Skip to content

Commit

Permalink
remove repeats
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Jul 12, 2024
1 parent 5485f3f commit 034b7ba
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions packages/account/src/test-utils/launchNode-singular-test.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,9 @@ describe('launchNode-singular-test', () => {
await sleep(1000);
await expect(fetch(killedNode.url)).rejects.toThrow('fetch failed');
});
test(
'synchronous cleanup kills node before test runner exits',
async () => {
const { cleanup, url } = await launchNode({ loggingEnabled: false });
killedNode.url = url;
cleanup();
},
{ repeats: 20 }
);
test('synchronous cleanup kills node before test runner exits', async () => {
const { cleanup, url } = await launchNode({ loggingEnabled: false });
killedNode.url = url;
cleanup();
});
});

0 comments on commit 034b7ba

Please sign in to comment.