We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b36be commit 0e41755Copy full SHA for 0e41755
1 file changed
e2e/__tests__/detectOpenHandles.ts
@@ -11,6 +11,10 @@ function getTextAfterTest(stderr: string) {
11
return (stderr.split(/Ran all test suites(.*)\n/)[2] || '').trim();
12
}
13
14
+beforeAll(() => {
15
+ jest.retryTimes(3);
16
+});
17
+
18
it('prints message about flag on slow tests', async () => {
19
const run = runContinuous('detect-open-handles', ['outside']);
20
await run.waitUntil(({stderr}) =>
0 commit comments