-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.4 KB
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
56
57
58
59
60
61
62
{
"name": "webuitests",
"version": "2.0.0",
"description": "Tidepool UI Testing with playwright",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .ts . --max-warnings 999999",
"lint:fix": "eslint --ext .ts . --fix",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"debug": "npx playwright test --debug",
"test": "npx playwright test",
"test:smoke": "npx playwright test --grep @smoke",
"test:critical": "npx playwright test --grep @critical",
"test:api": "npx playwright test --grep @api",
"test:ui": "npx playwright test --grep @ui",
"test:patient": "npx playwright test --grep @patient",
"test:clinician": "npx playwright test --grep @clinician",
"test:regression": "npx playwright test --grep @regression",
"merge-reports": "mkdir -p test-results && PLAYWRIGHT_JSON_OUTPUT_NAME=test-results/merged.json npx playwright merge-reports --reporter json blob-report",
"create-execution": "jiti utilities/create-execution.ts",
"upload-to-xray": "jiti utilities/upload-to-xray.ts",
"test-verdict": "node -e \"const r=require('./test-results/merged.json');const s=r.stats||{};const u=s.unexpected||0;console.log('Verdict — passed:',s.expected||0,'failed:',u,'flaky:',s.flaky||0,'skipped:',s.skipped||0);process.exit(u>0?1:0)\"",
"build": "tsc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tidepool-org/webuitests.git"
},
"author": "Ginny Yadav",
"license": "ISC",
"bugs": {
"url": "https://github.com/tidepool-org/webuitests/issues"
},
"homepage": "https://github.com/tidepool-org/webuitests#readme",
"dependencies": {
"@playwright/test": "^1.54.1",
"browserstack-node-sdk": "^1.34.49",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/js": "^9.32.0",
"@playwright/mcp": "^0.0.32",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/node": "^22.13.10",
"eslint": "^9.32.0",
"eslint-config-airbnb-extended": "^2.1.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-prettier": "^5.5.3",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript-eslint": "^8.38.0"
}
}