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 20f40c9 commit 362e84bCopy full SHA for 362e84b
.gitignore
@@ -6,6 +6,7 @@
6
# testing
7
/coverage
8
9
+/cypress/videos
10
/cypress/fixtures
11
/cypress/plugins
12
/cypress/support
.travis.yml
@@ -10,6 +10,7 @@ script:
- yarn build
- yarn test
- yarn test:coverage
13
+ - yarn cypress:run
14
15
after_success:
16
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
package.json
@@ -22,6 +22,7 @@
22
"test:watch": "jest --watch",
23
"test:coverage": "jest --coverage",
24
"cypress:open": "cypress open",
25
+ "cypress:run": "cypress run",
26
"storybook": "start-storybook -p 6006",
27
"storybook:build": "build-storybook"
28
},
0 commit comments