diff --git a/playwright.config.ts b/playwright.config.ts index 8b832025..f206d798 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -59,7 +59,10 @@ export default defineConfig({ projects: [ { name: 'chromium', - use: { ...devices['Desktop Chrome'], }, + use: { ...devices['Desktop Chrome'], + launchOptions: { + args: ['--enable-webgl', '--ignore-gpu-blocklist'], + }, }, /** { @@ -90,7 +93,7 @@ export default defineConfig({ // name: 'Google Chrome', // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, // }, - ], + ] /* Run your local dev server before starting the tests */ // webServer: { @@ -98,4 +101,4 @@ export default defineConfig({ // url: 'http://127.0.0.1:3000', // reuseExistingServer: !process.env.CI, // }, -}); \ No newline at end of file +});