From 6be87fcb371eb439618ef6f26a7fce51f6bb4192 Mon Sep 17 00:00:00 2001 From: Perplexity Computer Date: Thu, 26 Mar 2026 16:42:59 +0000 Subject: [PATCH] =?UTF-8?q?delete:=20tests/playwright.config.js=20?= =?UTF-8?q?=E2=80=94=20does=20not=20serve=20heartbeat/harness/portal=20(#5?= =?UTF-8?q?48)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/playwright.config.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 tests/playwright.config.js 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, - }, -});