From 20c8fbf314a61642cb212fd6d12c26d52ddf570e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elena=20Torr=C3=B3?= Date: Mon, 26 Jan 2026 11:53:29 +0100 Subject: [PATCH] :wrench: Make render-wasm visual regression tests use gpu (#8189) --- frontend/playwright.config.js | 5 +++++ 1 file changed, 5 insertions(+) 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",