blob: dd61cd94323ce0fb5c233f5654ac97375e3c59b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"name": "esp32-tollgate-tests",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "node tests/api.mjs && node tests/network.mjs",
"test:api": "node tests/api.mjs",
"test:network": "node tests/network.mjs",
"test:portal": "npx playwright test tests/captive-portal.spec.mjs",
"test:happy-path": "npx playwright test tests/interop-happy-path.spec.mjs",
"test:interop": "npx playwright test tests/interop-esp32-openwrt.spec.mjs",
"test:smoke": "node tests/smoke.mjs",
"test:playwright": "npx playwright test"
},
"devDependencies": {
"@playwright/test": "^1.52.0"
}
}
|