Skip to content

Commit 228af10

Browse files
refactor: externalize cypress baseUrl
1 parent 6c0d486 commit 228af10

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

e2e/cypress.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
{}
1+
{
2+
"baseUrl": "http://localhost:8000"
3+
}

e2e/cypress/integration/tests/actions.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
context('Actions', () => {
44
beforeEach(() => {
5-
cy.visit('http://localhost:8000')
5+
cy.visit('/')
66
});
77

88
it('All + elements are clickable', () => {

0 commit comments

Comments
 (0)