-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.98 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nightwatchtests",
"version": "1.0.0",
"description": "Tidepool UI Testing with nightwatch and browserstack",
"main": "index.js",
"scripts": {
"merge-reports": "jrm tests_output/testresults.xml \"tests_output/e2e/*.xml\" \"tests_output/ui/*.xml\"",
"testParallel": "nightwatch --tag parallel --env qa2chrome,prdchrome",
"testqa2Chrome": "nightwatch --env qa2chrome",
"testqa2Edge": "nightwatch --env qa2edge",
"testqa1Edge": "nightwatch --env qa1edge",
"testqa1Chrome": "nightwatch --env qa1chrome",
"testprdChrome": "nightwatch --env prdchrome",
"testprdEdge": "nightwatch --env prdedge",
"testintChrome": "nightwatch --env intchrome",
"testdev1Chrome": "nightwatch --env dev1chrome",
"testqa2ChromeTag": "nightwatch --env qa2chrome --tag clinician",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"scriptsComments": {
"testParallel": "Executes tests that are able to run in parallel on all environments",
"testXSeq": "Executes tests that must be run sequentially, and not in conjuction with other environments",
"testXAll": "Executes ALL tests on 1 environment"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tidepool-org/nightwatchtests.git"
},
"author": "Ginny Yadav",
"license": "ISC",
"bugs": {
"url": "https://github.com/tidepool-org/nightwatchtests/issues"
},
"homepage": "https://github.com/tidepool-org/nightwatchtests#readme",
"dependencies": {
"axios": "1.6.7",
"dayjs": "1.11.10",
"dotenv": "16.4.5",
"eslint-config-airbnb": "19.0.4",
"fast-xml-parser": "4.3.5",
"form-data": "4.0.0",
"nightwatch-vrt": "github:tidepool-org/nightwatch-vrt#master",
"otplib": "12.0.1",
"request": "2.88.2"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-chai-friendly": "0.7.4",
"eslint-plugin-import": "2.29.1",
"junit-report-merger": "6.0.3",
"nightwatch": "3.4.1"
}
}