diff --git a/tests/playwright.config.js b/tests/playwright.config.js deleted file mode 100644 index 8922d64..0000000 --- a/tests/playwright.config.js +++ /dev/null @@ -1,30 +0,0 @@ -// @ts-check -const { defineConfig } = require('@playwright/test'); - -module.exports = defineConfig({ - testDir: '.', - timeout: 30000, - retries: 1, - use: { - headless: true, - viewport: { width: 1280, height: 720 }, - // WebGL needs a real GPU context — use chromium with GPU - launchOptions: { - args: [ - '--use-gl=angle', - '--use-angle=swiftshader', // Software WebGL for CI - '--enable-webgl', - ], - }, - }, - projects: [ - { name: 'chromium', use: { browserName: 'chromium' } }, - ], - // Local server - webServer: { - command: 'python3 -m http.server 8888', - port: 8888, - cwd: '..', - reuseExistingServer: true, - }, -});