forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "blogs__element-coverage",
"version": "1.0.0",
"description": "Showing elements the test has interacted with",
"private": true,
"scripts": {
"cypress:open": "../../node_modules/.bin/cypress open",
"cypress:run": "npm run wait-on && ../../node_modules/.bin/cypress run",
"cypress:run:record": "npm run wait-on && ../../node_modules/.bin/cypress run --record",
"start": "../../node_modules/.bin/react-scripts start",
"test:ci": "../../node_modules/.bin/start-test 3000 cypress:run",
"test:ci:record": "../../node_modules/.bin/start-test 3000 cypress:run:record",
"wait-on": "../../node_modules/.bin/wait-on http://localhost:3000"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}