Skip to content

Commit 0645563

Browse files
authored
Revert " rebase from QA"
1 parent 85fab88 commit 0645563

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

e2e/fixtures/cities.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"cities": [
33
{
44
"_id": "123abc",
5-
"name": "London",
6-
"visibleIn": ["VOLUNTEER_FORM"]
5+
"name": "London"
76
}
87
]
98
}

e2e/integration/journey.test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
const mockServerURL = 'http://localhost:3001'
22

33
beforeEach(() => {
4-
cy.intercept('GET', `${mockServerURL}/cities?visibleIn=VOLUNTEER_FORM`, {
5-
fixture: 'cities.json'
6-
})
4+
cy.intercept('GET', `${mockServerURL}/cities`, { fixture: 'cities.json' })
75
cy.visit('/')
86
})
97

e2e/integration/withCode.test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
const mockServerURL = 'http://localhost:3001'
22

33
beforeEach(() => {
4-
cy.intercept('GET', `${mockServerURL}/cities?visibleIn=VOLUNTEER_FORM`, {
5-
fixture: 'cities.json'
6-
})
4+
cy.intercept('GET', `${mockServerURL}/cities`, { fixture: 'cities.json' })
75
})
86

97
it('shows success message', () => {

0 commit comments

Comments
 (0)