-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.39 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
{
"name": "dms-api-tests",
"version": "1.0.0",
"private": true,
"description": "Document Management REST API — Postman test suite, CI-runnable via Postman CLI.",
"scripts": {
"postman:install:linux": "curl -o- https://dl-cli.pstmn.io/install/linux64.sh | sh",
"postman:install:mac": "curl -o- https://dl-cli.pstmn.io/install/osx.sh | sh",
"postman:install:win": "powershell -NoProfile -Command \"Invoke-Expression (Invoke-RestMethod -Uri https://dl-cli.pstmn.io/install/win64.ps1)\"",
"import:postman:latest": "node import-collection.mjs",
"export:tests": "node export-tests.mjs",
"test": "node run-tests.mjs",
"test:setup": "node run-tests.mjs --only \"Setup\"",
"test:smoke": "node run-tests.mjs --only \"Smoke Tests\"",
"test:e2e": "node run-tests.mjs --only \"E2E Tests\"",
"test:workflows": "node run-tests.mjs --only \"E2E Workflows\"",
"test:contract": "node run-tests.mjs --only \"Contract Tests\"",
"test:security": "node run-tests.mjs --only \"Security Tests\"",
"test:fuzz": "node run-tests.mjs --only \"Security Fuzz Tests\"",
"test:integration": "node run-tests.mjs --only \"Integration Tests\"",
"test:performance": "node run-tests.mjs --only \"Performance Tests\"",
"test:all": "node run-tests.mjs --e2e",
"gate": "node ci-gate.mjs",
"ci": "node run-tests.mjs && node ci-gate.mjs"
},
"engines": {
"node": ">=18"
}
}