diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/package.json b/package.json index dd61cd9..fe1daee 100644 --- a/package.json +++ b/package.json | |||
| @@ -3,14 +3,18 @@ | |||
| 3 | "version": "1.0.0", | 3 | "version": "1.0.0", |
| 4 | "private": true, | 4 | "private": true, |
| 5 | "scripts": { | 5 | "scripts": { |
| 6 | "test": "node tests/api.mjs && node tests/network.mjs", | 6 | "test": "node tests/integration/api.mjs && node tests/integration/network.mjs", |
| 7 | "test:api": "node tests/api.mjs", | 7 | "test:api": "node tests/integration/api.mjs", |
| 8 | "test:network": "node tests/network.mjs", | 8 | "test:network": "node tests/integration/network.mjs", |
| 9 | "test:portal": "npx playwright test tests/captive-portal.spec.mjs", | 9 | "test:smoke": "node tests/integration/smoke.mjs", |
| 10 | "test:happy-path": "npx playwright test tests/interop-happy-path.spec.mjs", | 10 | "test:payment": "node tests/integration/phase2.mjs", |
| 11 | "test:interop": "npx playwright test tests/interop-esp32-openwrt.spec.mjs", | 11 | "test:reset-auth": "node tests/integration/test-reset-auth.mjs", |
| 12 | "test:smoke": "node tests/smoke.mjs", | 12 | "test:session-expiry": "node tests/integration/test-session-expiry.mjs", |
| 13 | "test:playwright": "npx playwright test" | 13 | "test:dns-firewall": "node tests/integration/test-dns-firewall.mjs", |
| 14 | "test:portal": "npx playwright test -c tests/e2e/playwright.config.mjs captive-portal.spec.mjs", | ||
| 15 | "test:happy-path": "npx playwright test -c tests/e2e/playwright.config.mjs interop-happy-path.spec.mjs", | ||
| 16 | "test:e2e": "npx playwright test -c tests/e2e/playwright.config.mjs", | ||
| 17 | "test:playwright": "npx playwright test -c tests/e2e/playwright.config.mjs" | ||
| 14 | }, | 18 | }, |
| 15 | "devDependencies": { | 19 | "devDependencies": { |
| 16 | "@playwright/test": "^1.52.0" | 20 | "@playwright/test": "^1.52.0" |