We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ada93a commit 6910b1aCopy full SHA for 6910b1a
cypress/integration/first-test_spec.js
@@ -1,6 +1,6 @@
1
describe('Our Url ', function() {
2
it('opens', function() {
3
- cy.visit('https://lucid-franklin-367702.netlify.com/');
+ cy.visit('http://localhost:8080/');
4
cy.contains('Javascript').click();
5
cy.url().should('include', '/javascript');
6
cy.contains('Simple Add').click();
package.json
@@ -10,7 +10,7 @@
10
"start": "node server.js",
11
"build": "webpack",
12
"dev": "webpack-dev-server",
13
- "test": "yarn run cypress run",
+ "test": "yarn dev & wait-on http://localhost:8080 & yarn run cypress run",
14
"lint": "eslint src -c .eslintrc.json --ext js,jsx",
15
"precommit": "yarn run lint"
16
},
0 commit comments