| Filename | Latest commit message | Latest commit date |
|---|---|---|
Add proper TypeScript setup with tsconfig.json and type definitions to resolve type errors in the e2e test files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
| .. | ||
| e2e | ||
| wasm-app | ||
| GL_README.md | ||
| package-lock.json | ||
| package.json | ||
| playwright.config.ts | ||
| README.md | ||
| tsconfig.json | ||
KiCad WASM Tests
Playwright tests for verifying the wxWidgets WASM port.
Prerequisites
- Node.js 18+
- Emscripten SDK (for building)
Building the Test App
../scripts/build-wasm-test.sh
This builds wasm-app/minimal_test.{html,js,wasm}.
Running Tests
npm install
npm test
Viewing the App Directly
Start a local server in the wasm-app directory:
cd wasm-app
npx serve .
Then open http://localhost:3000/minimal_test.html in your browser.
Alternative using Python:
cd wasm-app
python3 -m http.server 8000
Then open http://localhost:8000/minimal_test.html