Update application ports to 3050 and enhance Playwright tests with WebGL mock
Tests / backend-test (pull_request) Successful in 10s
Tests / frontend-test (pull_request) Successful in 9m25s
Tests / e2e-test (pull_request) Has been cancelled

This commit is contained in:
(jenkins)
2026-04-01 11:04:16 +01:00
parent cac76a2f69
commit 228032c913
11 changed files with 278 additions and 19 deletions
+10 -2
View File
@@ -8,9 +8,17 @@ export default defineConfig({
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? 'list' : 'html',
use: {
baseURL: 'http://localhost:3000',
baseURL: 'http://localhost:3050',
trace: 'on-first-retry',
headless: true,
launchOptions: {
args: [
'--enable-webgl',
'--ignore-gpu-blocklist',
'--use-gl=angle',
'--use-angle=swiftshader-webgl',
],
},
},
projects: [
{
@@ -20,7 +28,7 @@ export default defineConfig({
],
webServer: {
command: 'npm run start',
url: 'http://localhost:3000',
url: 'http://localhost:3050',
reuseExistingServer: !process.env.CI,
},
});