1
0

Change foundational structure
Some checks failed
Build & Test WASM / build-and-test (push) Failing after 1m12s

This commit is contained in:
2026-03-16 22:57:53 +01:00
parent 25834ed5e3
commit 14e4c12b6b
10 changed files with 193 additions and 159 deletions

View File

@@ -0,0 +1,23 @@
const { defineConfig } = require('@playwright/test');
module.exports = defineConfig({
testDir: '.',
testMatch: '*.spec.js',
timeout: 300_000,
retries: 0,
expect: {
timeout: 10_000,
},
use: {
baseURL: 'http://localhost:8889',
actionTimeout: 10_000,
launchOptions: {
args: ['--disable-dev-shm-usage'],
},
},
webServer: {
command: 'python3 -m http.server -d ../../web/public 8889',
port: 8889,
reuseExistingServer: true,
},
});