From 4c1ee544bc76f14e3245ce01a67a91ad8a9242e8 Mon Sep 17 00:00:00 2001 From: Jim Ehrismann Date: Wed, 26 Jan 2022 17:10:59 -0500 Subject: [PATCH] skip preferences integration test on windows due to playwright issue Signed-off-by: Jim Ehrismann --- integration/__tests__/app-preferences.tests.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration/__tests__/app-preferences.tests.ts b/integration/__tests__/app-preferences.tests.ts index 98b7fd41d0..d342106631 100644 --- a/integration/__tests__/app-preferences.tests.ts +++ b/integration/__tests__/app-preferences.tests.ts @@ -11,6 +11,7 @@ */ import type { ElectronApplication, Page } from "playwright"; import * as utils from "../helpers/utils"; +import { isWindows } from "../../src/common/vars"; describe("preferences page tests", () => { let window: Page, cleanup: () => Promise; @@ -33,7 +34,8 @@ describe("preferences page tests", () => { await cleanup(); }, 10*60*1000); - it('shows "preferences" and can navigate through the tabs', async () => { + // skip on windows due to suspected playwright issue with Electron 14 + utils.itIf(!isWindows)('shows "preferences" and can navigate through the tabs', async () => { const pages = [ { id: "application",