From 2d2cc6384007324176cc0368301295686a10c255 Mon Sep 17 00:00:00 2001 From: Adam Gastineau Date: Tue, 11 Feb 2025 09:49:01 -0800 Subject: [PATCH] SIGKILL not SIGTERM --- tests/library/inspector/cli-codegen-2.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/library/inspector/cli-codegen-2.spec.ts b/tests/library/inspector/cli-codegen-2.spec.ts index 255daea979..2e3b52cacc 100644 --- a/tests/library/inspector/cli-codegen-2.spec.ts +++ b/tests/library/inspector/cli-codegen-2.spec.ts @@ -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();