fix timeout

This commit is contained in:
Simon Knott 2024-12-22 10:47:34 +00:00
parent 907bfd2c80
commit 5555d1741a

View file

@ -804,7 +804,7 @@ test.describe('kill option', () => {
});
test('can be configured to send SIGINT', async ({ runInlineTest }) => {
const result = await runInlineTest(files({ kill: { SIGINT: 5000 } }), { workers: 1 });
const result = await runInlineTest(files({ kill: { SIGINT: 500 } }), { workers: 1 });
expect(parseOutputLines(result).sort()).toEqual(['childprocess received SIGINT', 'webserver received SIGINT but stubbornly refuses to wind down']);
});