-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 4.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "activiti-cloud-playwright-tests",
"version": "1.0.0",
"description": "Playwright TypeScript tests for Activiti Cloud",
"main": "index.js",
"config": {
"pw_root": "activiti-cloud-acceptance-tests-playwright",
"pw_suite": "--project=acceptance --project=notifications --project=destructive-last"
},
"scripts": {
"typecheck": "tsc --noEmit -p activiti-cloud-acceptance-tests-playwright/tsconfig.json",
"check:env": "tsx activiti-cloud-acceptance-tests-playwright/scripts/check-local-env.ts",
"port-forward": "activiti-cloud-acceptance-tests-playwright/scripts/start-port-forward.sh",
"cluster:prereqs": "bash activiti-cloud-acceptance-tests-playwright/scripts/apply-cluster-prereqs.sh",
"test:setup": "bash activiti-cloud-acceptance-tests-playwright/scripts/setup-acceptance-environment.sh",
"preview:delete": "bash activiti-cloud-acceptance-tests-playwright/scripts/delete-preview-namespace.sh",
"kube:use": "bash activiti-cloud-acceptance-tests-playwright/scripts/use-kubeconfig.sh",
"verify:process-catalog": "tsx activiti-cloud-acceptance-tests-playwright/scripts/verify-acceptance-process-catalog.ts",
"pw": "playwright test --config=$npm_package_config_pw_root/playwright.config.ts",
"test": "npm run pw -- $npm_package_config_pw_suite",
"test:all": "npm run test",
"test:no-destructive": "npm run pw -- --project=acceptance --project=notifications",
"test:destructive": "npm run pw -- --project=destructive-last --no-deps",
"test:smoke": "npm run pw -- --project=smoke",
"test:debug": "npm run pw -- $npm_package_config_pw_suite --debug",
"test:identity": "npm run pw -- --project=identity",
"test:security": "npm run pw -- --project=security",
"test:runtime": "npm run pw -- --project=runtime",
"test:runtime:process": "npm run pw -- --project=runtime-process",
"test:runtime:task": "npm run pw -- --project=runtime-task",
"report": "playwright show-report",
"report:coverage": "npx --yes open@10 activiti-cloud-acceptance-tests-playwright/playswag-coverage/playswag-coverage.html",
"install:browsers": "playwright install",
"install:deps": "playwright install-deps",
"matrix:rabbitmq:non-partitioned:default": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b rabbitmq -p non-partitioned -d default-destinations",
"matrix:rabbitmq:partitioned:default": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b rabbitmq -p partitioned -d default-destinations",
"matrix:kafka:non-partitioned:default": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b kafka -p non-partitioned -d default-destinations",
"matrix:kafka:partitioned:default": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b kafka -p partitioned -d default-destinations",
"matrix:kafka:partitioned:override": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b kafka -p partitioned -d override-destinations",
"matrix:rabbitmq:non-partitioned:pdb": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b rabbitmq -p non-partitioned -d pdb",
"matrix:rabbitmq:prefix:pdb": "bash activiti-cloud-acceptance-tests-playwright/scripts/run-matrix-item.sh -n ${npm_config_name:-local-dev} -b rabbitmq -p prefix -d pdb"
},
"keywords": [
"playwright",
"testing",
"e2e",
"typescript",
"activiti-cloud"
],
"author": "michal.fidor@hyland.com",
"license": "Apache-2.0",
"devDependencies": {
"@michalfidor/playswag": "^1.10.3",
"@reportportal/agent-js-playwright": "^5.4.2",
"@playwright/test": "^1.62.1",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.23.11",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"chalk": "^5.6.2",
"date-fns": "^4.4.0",
"dotenv": "^17.4.2",
"jwt-decode": "^4.0.0",
"winston": "^3.19.0",
"ws": "^8.21.3"
},
"overrides": {
"fast-uri": "3.1.5",
"js-yaml": "4.3.1"
}
}