forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 941 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "xhr-assertions",
"version": "1.0.0",
"description": "Checking network request and response",
"private": true,
"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:firefox": "../../node_modules/.bin/cypress run --browser firefox",
"cypress:run:record": "../../node_modules/.bin/cypress run --record",
"dev": "../../node_modules/.bin/start-test 6055 cypress:open",
"start": "node server.js --port 6055",
"test:ci": "../../node_modules/.bin/start-test 6055 cypress:run",
"test:ci:chrome": "../../node_modules/.bin/start-test 6055 cypress:run:chrome",
"test:ci:firefox": "../../node_modules/.bin/start-test 6055 cypress:run:firefox",
"test:ci:record": "../../node_modules/.bin/start-test 6055 cypress:run:record"
}
}