From 2605d439d236647bb0c7de51925c6b286155f861 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 17 Mar 2025 11:36:54 +0000 Subject: [PATCH] Skip Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- playwright/e2e/launch/launch.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/playwright/e2e/launch/launch.spec.ts b/playwright/e2e/launch/launch.spec.ts index fec9a8c8..78fca814 100644 --- a/playwright/e2e/launch/launch.spec.ts +++ b/playwright/e2e/launch/launch.spec.ts @@ -61,7 +61,9 @@ test.describe("App launch", () => { extraArgs: ["--no-update"], }); - test("should respect option", async ({ page, stdout }) => { + // XXX: this test works fine locally but in CI the app start races with the test plumbing up the stdout/stderr pipes + // which means the logs are missed, disabling for now. + test.skip("should respect option", async ({ page, stdout }) => { expect(stdout.data.toString()).toContain("Auto update disabled via command line flag"); }); });