forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 1008 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "blogs__page-actions",
"version": "1.0.0",
"description": "Testing Redux store using Cypress",
"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:win": "bin-up cypress run",
"dev": "../../node_modules/.bin/start-test 8888 cypress:open",
"start": "../../node_modules/.bin/http-server -p 8888 --silent -c-1",
"start:win": "bin-up serve -l 8888 --no-clipboard",
"test:ci": "../../node_modules/.bin/start-test 8888 cypress:run",
"test:ci:chrome": "../../node_modules/.bin/start-test 8888 cypress:run:chrome",
"test:ci:firefox": "../../node_modules/.bin/start-test 8888 cypress:run:firefox",
"test:ci:windows": "bin-up start-test start:win http://localhost:8888 cypress:run:win"
}
}