diff options
| author | Your Name <you@example.com> | 2026-05-17 17:18:43 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-17 17:18:43 +0530 |
| commit | 8071741815f0b0938701e80a63e80b0ec94b2778 (patch) | |
| tree | 2a1511480e0b58f4efb144aa9d10c9fba5eed034 /tests/e2e/playwright.config.mjs | |
| parent | 0c2c67b463d6a90aaa0bb69bf3c91dba1d9ec3ec (diff) | |
refactor: reorganize test suite, add integration tests for NAT filter
- Move integration tests (api, network, phase2, smoke) to tests/integration/
- Move Playwright specs (captive-portal, interop-happy-path) to tests/e2e/
- Move playwright.config.mjs to tests/e2e/
- Fix hardcoded IP fallbacks: 192.168.4.1 → 10.192.45.1
- Add test-reset-auth.mjs: reset→pay→allow→revoke→block cycle
- Add test-session-expiry.mjs: pay→wait 65s→verify blocked (slow test)
- Add test-dns-firewall.mjs: DNS hijack/forward + per-client NAT filter
- Update Makefile with test-unit, test-integration, test-e2e, test-all targets
- Update package.json scripts for new paths
- Fix Playwright video: retain-on-failure instead of always-on
- Update AGENTS.md: per-client NAT filter description
- Update CHECKLIST.md: mark completed items, add Board B identity
- Board B nsec: 9af47906... → SSID TollGate-b96d80, AP IP 10.185.47.1
- 186 unit tests passing
Diffstat (limited to 'tests/e2e/playwright.config.mjs')
| -rw-r--r-- | tests/e2e/playwright.config.mjs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/e2e/playwright.config.mjs b/tests/e2e/playwright.config.mjs new file mode 100644 index 0000000..f4cbe01 --- /dev/null +++ b/tests/e2e/playwright.config.mjs | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | import { defineConfig } from '@playwright/test'; | ||
| 2 | |||
| 3 | export default defineConfig({ | ||
| 4 | testDir: '.', | ||
| 5 | testMatch: '*.spec.mjs', | ||
| 6 | timeout: 120000, | ||
| 7 | retries: 0, | ||
| 8 | use: { | ||
| 9 | headless: true, | ||
| 10 | viewport: { width: 1280, height: 900 }, | ||
| 11 | screenshot: 'on', | ||
| 12 | video: 'retain-on-failure', | ||
| 13 | trace: 'on-first-retry', | ||
| 14 | }, | ||
| 15 | reporter: [['list'], ['html', { open: 'never' }]], | ||
| 16 | outputDir: 'test-results', | ||
| 17 | workers: 1, | ||
| 18 | }); | ||