-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
22 lines (22 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "blogs__application-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:record": "../../node_modules/.bin/cypress run --record",
"cypress:run:win": "bin-up cypress run",
"cypress:run:win:record": "bin-up cypress run --record --group blogs__application-actions",
"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:record": "../../node_modules/.bin/start-test 8888 cypress:run:record"
}
}