-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
16 lines (16 loc) · 921 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "suitest-js-api-gauge-demo",
"version": "0.1.0",
"description": "An example of Suitest <-> Gauge integration",
"scripts": {
"start": "suitest run gauge run specs/ --simple-console --hide-suggestion --tags \\\"e2e\\\"",
"start:home": "suitest run gauge run specs/ --simple-console --hide-suggestion --tags \\\"e2e, home\\\"",
"start:video": "suitest run gauge run specs/ --simple-console --hide-suggestion --tags \\\"e2e, video\\\"",
"start:smoke": "suitest run gauge run specs/ --simple-console --hide-suggestion --tags \\\"smoke\\\"",
"parallel": "suitest run --config-file=.suitestrc.parallel.json gauge run specs/ --simple-console --hide-suggestion --tags \\\"e2e\\\"",
"parallel:smoke": "suitest run --config-file=.suitestrc.parallel.json gauge run specs/ --simple-console --hide-suggestion --tags \\\"smoke\\\""
},
"dependencies": {
"suitest-js-api": "^3.1.0"
}
}