-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
18 lines (18 loc) · 989 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "logging-in-single-sign-on",
"version": "1.0.0",
"description": "Login when authentication is done on a 3rd party server",
"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 7074 cypress:open",
"start": "node app_server.js --port 7074 & node auth_server.js --port 7075",
"test:ci": "../../node_modules/.bin/start-test 7074 cypress:run",
"test:ci:chrome": "../../node_modules/.bin/start-test 7074 cypress:run:chrome",
"test:ci:firefox": "../../node_modules/.bin/start-test 7074 cypress:run:firefox",
"test:ci:record": "../../node_modules/.bin/start-test 7074 cypress:run:record"
}
}