SIGKILL not SIGTERM

This commit is contained in:
Adam Gastineau 2025-02-11 09:49:01 -08:00
parent fc1ec40bde
commit 2d2cc63840

View file

@ -464,7 +464,7 @@ await page1.GotoAsync("about:blank?foo");`);
expect(exitCode).toBe(130);
} else {
// If the runner is slow enough, the process will be forcibly terminated by the signal
expect(signal).toMatch(/SIGINT|SIGTERM/);
expect(signal).toMatch(/SIGINT|SIGKILL/);
}
expect(fs.existsSync(storageFileName)).toBeTruthy();
expect(fs.existsSync(harFileName)).toBeTruthy();