Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2025-03-17 11:36:54 +00:00
parent 65cfcd34e0
commit 2605d439d2
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D

View File

@ -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");
});
});