forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "cypress-example-vue-vuex-rest",
"version": "1.0.0",
"description": "Testing Vue + Vuex + REST TodoMVC using Cypress",
"scripts": {
"cypress:open": "../../node_modules/.bin/cypress open",
"cypress:run": "../../node_modules/.bin/cypress run",
"cypress:run:chrome": "../../node_modules/.bin/cypress run --browser chrome",
"cypress:run:chrome:headless": "../../node_modules/.bin/cypress run --browser chrome --headless",
"cypress:run:record": "../../node_modules/.bin/cypress run --record",
"dev": "../../node_modules/.bin/start-test 3000 cypress:open",
"reset": "node reset-db.js",
"reset:db": "node reset-db.js",
"start": "../../node_modules/.bin/json-server --static . data.json --middlewares ../../node_modules/json-server-reset",
"test:ci": "../../node_modules/.bin/start-test 3000 cypress:run",
"test:ci:chrome": "../../node_modules/.bin/start-test 3000 cypress:run:chrome",
"test:ci:chrome:headless": "../../node_modules/.bin/start-test 3000 cypress:run:chrome:headless",
"test:ci:record": "../../node_modules/.bin/start-test 3000 cypress:run:record"
}
}