Dont test webgpu in CI
Some checks are pending
Tests / tests (push) Waiting to run

This commit is contained in:
Dustin Brett 2025-08-29 09:58:43 -07:00
parent 741a36d14d
commit e07424b739
2 changed files with 3 additions and 2 deletions

View File

@ -187,7 +187,8 @@ test.describe("entries", () => {
test("has items", async ({ browserName, page }) => {
const entries = TASKBAR_ENTRIES_MENU_ITEMS(
!WEBGPU_HEADLESS_NOT_SUPPORTED_BROWSERS.has(browserName)
!WEBGPU_HEADLESS_NOT_SUPPORTED_BROWSERS.has(browserName) &&
!process.env.CI
);
await contextMenuHasCount(entries.length, { page });

View File

@ -17,7 +17,7 @@ const config: PlaywrightTestConfig = {
use: {
...chrome,
launchOptions: {
args: ["--enable-gpu", "--use-gl=angle"],
args: CI ? [] : ["--enable-gpu", "--use-gl=angle"],
},
},
},