test: relax "should print if globalTimeout is reached" expectation (#30558)

This commit is contained in:
Yury Semikhatsky 2024-04-25 18:40:58 -07:00 committed by GitHub
parent ae9345d0bd
commit b5aca9fca8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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