mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Update process.test.js
This commit is contained in:
@@ -425,8 +425,8 @@ describe("signal", () => {
|
||||
});
|
||||
|
||||
it("process.kill(2) throws on invalid input", async () => {
|
||||
expect(() => process.kill(0, "SIGPOOP")).toThrow();
|
||||
expect(() => process.kill(0, 456)).toThrow();
|
||||
expect(() => process.kill(2147483640, "SIGPOOP")).toThrow();
|
||||
expect(() => process.kill(2147483640, 456)).toThrow();
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user