16 lines
439 B
JSON
16 lines
439 B
JSON
|
|
{
|
||
|
|
"name": "kicad-wasm-tests",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Playwright tests for wxWidgets WASM port",
|
||
|
|
"scripts": {
|
||
|
|
"test": "playwright test",
|
||
|
|
"test:ui": "playwright test --ui",
|
||
|
|
"test:headed": "playwright test --headed",
|
||
|
|
"build-wasm": "cd wasm-app && make -f Makefile.wasm",
|
||
|
|
"serve": "npx serve wasm-app -p 8080"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@playwright/test": "^1.40.0",
|
||
|
|
"serve": "^14.2.0"
|
||
|
|
}
|
||
|
|
}
|