From 59aee58fba5d5a08fccea9e45b961593dd08c5c8 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 25 Apr 2024 16:19:04 -0700 Subject: [PATCH] test: relax "should print if globalTimeout is reached" expectation --- tests/playwright-test/reporter-base.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright-test/reporter-base.spec.ts b/tests/playwright-test/reporter-base.spec.ts index bd04cb2dfa..6d6e499605 100644 --- a/tests/playwright-test/reporter-base.spec.ts +++ b/tests/playwright-test/reporter-base.spec.ts @@ -232,7 +232,7 @@ for (const useIntermediateMergeReport of [false, true] as const) { expect(result.passed).toBe(1); // TODO: uncomment once https://github.com/microsoft/playwright/issues/30550 is fixed. // expect(result.interrupted).toBe(1); - expect(result.didNotRun).toBe(1); + // expect(result.didNotRun).toBe(1); expect(result.output).toContain('Timed out waiting 3s for the test suite to run'); });