diff --git a/frontend/playwright.config.js b/frontend/playwright.config.js index d3bb265b79..2e5b06560a 100644 --- a/frontend/playwright.config.js +++ b/frontend/playwright.config.js @@ -64,6 +64,11 @@ export default defineConfig({ ...devices["Desktop Chrome"], viewport: { width: 1920, height: 1080 }, // Add custom viewport size deviceScaleFactor: 2, + launchOptions: { + args: [ + '--enable-gpu', + ], + } }, testDir: "./playwright/ui/render-wasm-specs", snapshotPathTemplate: "{testDir}/{testFilePath}-snapshots/{arg}.png",