-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 3.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 3.11 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
{
"name": "pcs-exui-e2e-tests",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test:pr": "yarn playwright install && yarn playwright test --project chrome --grep '@PR'; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:regression": "yarn playwright install && yarn playwright test --project chrome --grep '@regression'; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:makeAClaim": "yarn playwright install && yarn playwright test --project chrome --grep '@MAC'; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:commonComponent": "yarn playwright install && yarn playwright test --project chrome --grep '@CC'; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:chrome": "yarn playwright install && yarn playwright test --project chrome; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:firefox": "yarn playwright install && yarn playwright test --project firefox; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:webkit": "yarn playwright install && yarn playwright test --project webkit; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:edge": "yarn playwright install && yarn playwright install msedge && yarn playwright test --project edge; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:mobile-android": "yarn playwright install && yarn playwright test --project mobile-android; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:mobile-ios": "yarn playwright install && yarn playwright test --project mobile-ios; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:mobile-ipad": "yarn playwright install && yarn playwright test --project mobile-ipad; EXIT_CODE=$?; allure generate -o ../../e2e-output --clean; tsx ./config/clean-attachments.config.ts; exit $EXIT_CODE",
"test:openAllureReport": "yarn allure open ../../e2e-output",
"allure-slack-notify": "tsx ./scripts/allure-slack-notifier.ts"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^24.0.0",
"allure-commandline": "^2.34.1",
"allure-js-commons": "^3.3.0",
"allure-playwright": "^3.3.0",
"axios": "^1.15.0",
"simple-git": "^3.27.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@axe-core/playwright": "^4.10.2",
"@hmcts/playwright-common": "^1.0.33",
"oauth4webapi": "^3.5.1",
"uuid": "^13.0.0"
},
"resolutions": {
"lighthouse": "^13.0.0"
}
}