From 8628bd612dc49cd3815f2d955ab534f2c8583d04 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Fri, 19 May 2023 15:12:51 +0200 Subject: [PATCH] chore: disable gpu heavy features in headless vscode tests --- test/jest/cli.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/jest/cli.ts b/test/jest/cli.ts index 61afca07..cdc0b6e2 100644 --- a/test/jest/cli.ts +++ b/test/jest/cli.ts @@ -14,6 +14,9 @@ runTests({ launchArgs: [ path.resolve(rootDir, './test/fixture'), '--disable-extensions', + '--disable-gpu', + '--disable-gpu-sandbox', + '--disable-workspace-trust', '--verbose', ], version: process.env.VSCODE_VERSION,