-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.62 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
{
"name": "prl-e2e-tests",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.11.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@eslint/js": "^9.11.1",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@playwright/test": "^1.49.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"axios": "^1.7.4",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"eslint-plugin-playwright": "^2.1.0",
"jest": "^29.7.0",
"playwright-core": "^1.49.0",
"prettier": "^3.3.3",
"simple-git": "^3.27.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.0",
"uuid": "^11.0.2"
},
"scripts": {
"setup": "yarn install && ./scripts/get_secrets.sh && yarn playwright install && yarn playwright install webkit && yarn playwright install firefox",
"lint": "yarn prettier . --write && yarn tsc -p tsconfig.json && yarn eslint .",
"test:unit": "jest",
"test:changes": "yarn playwright install && ts-node ./e2e/common/changedTestsRunner.ts",
"test:fullfunctional": "echo 'This is a placeholder'",
"test:crossbrowser": "echo 'This is a placeholder'",
"test:manageCasesSmoke": "yarn playwright install && yarn playwright test e2e/tests/manageCases --project chromium --grep @smoke",
"test:manageCasesChrome": "yarn playwright install && yarn playwright test e2e/tests/manageCases --project chromium --grep @nightly",
"test:manageCasesFirefox": "yarn playwright install firefox && yarn playwright test e2e/tests/manageCases --project firefox --grep @smoke",
"test:manageCasesSafari": "yarn playwright install webkit && yarn playwright test e2e/tests/manageCases --project webkit --grep @smoke",
"test:manageCasesAccessibility": "yarn playwright install && yarn playwright test e2e/tests/manageCases --project chromium --grep @accessibility",
"test:citizenSmoke": "yarn playwright install && yarn playwright test e2e/tests/citizen --project chromium --grep @smoke",
"test:citizenFrontendChrome": "yarn playwright install && yarn playwright test e2e/tests/citizen --project chromium --grep @regression @nightly",
"test:citizenFrontendFirefox": "yarn playwright install firefox && yarn playwright test e2e/tests/citizen --project firefox --grep @smoke",
"test:citizenFrontendSafari": "yarn playwright install webkit && yarn playwright test e2e/tests/citizen --project webkit --grep @smoke",
"test:citizenFrontendAccessibility": "yarn playwright install && yarn playwright test e2e/tests/citizen --project chromium --grep @accessibility"
},
"packageManager": "[email protected]"
}