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
|
{
"name": "esp32-tollgate-tests",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "node tests/integration/api.mjs && node tests/integration/network.mjs",
"test:api": "node tests/integration/api.mjs",
"test:network": "node tests/integration/network.mjs",
"test:smoke": "node tests/integration/smoke.mjs",
"test:payment": "node tests/integration/phase2.mjs",
"test:reset-auth": "node tests/integration/test-reset-auth.mjs",
"test:session-expiry": "node tests/integration/test-session-expiry.mjs",
"test:dns-firewall": "node tests/integration/test-dns-firewall.mjs",
"test:cvm": "node tests/integration/test-cvm.mjs",
"test:relay": "node tests/integration/test-local-relay.mjs",
"test:relay-nip11": "node tests/integration/test-relay-nip11.mjs",
"test:portal": "npx playwright test -c tests/e2e/playwright.config.mjs captive-portal.spec.mjs",
"test:happy-path": "npx playwright test -c tests/e2e/playwright.config.mjs interop-happy-path.spec.mjs",
"test:e2e": "npx playwright test -c tests/e2e/playwright.config.mjs",
"test:playwright": "npx playwright test -c tests/e2e/playwright.config.mjs"
},
"devDependencies": {
"@playwright/test": "^1.52.0"
},
"dependencies": {
"ws": "^8.20.1"
}
}
|