diff options
author | 2022-12-06 16:25:07 -0800 | |
---|---|---|
committer | 2022-12-06 16:25:39 -0800 | |
commit | 51d69d8c853ee634084c10b21720c0e201cc7721 (patch) | |
tree | d5c753beac1563cce7cd195c976528b06a1c1f3f /test/bun.js | |
parent | 4dd2cb33b7603983f2ae9df425b8c0369acc9b61 (diff) | |
download | bun-51d69d8c853ee634084c10b21720c0e201cc7721.tar.gz bun-51d69d8c853ee634084c10b21720c0e201cc7721.tar.zst bun-51d69d8c853ee634084c10b21720c0e201cc7721.zip |
fix event emitter cast
Diffstat (limited to '')
-rw-r--r-- | test/bun.js/child_process-node.test.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/bun.js/child_process-node.test.js b/test/bun.js/child_process-node.test.js index 716bf6e67..a28ae21f2 100644 --- a/test/bun.js/child_process-node.test.js +++ b/test/bun.js/child_process-node.test.js @@ -195,12 +195,6 @@ describe("ChildProcess.spawn", () => { { code: "ERR_UNKNOWN_SIGNAL", name: TYPE_ERR_NAME }, ); }); - - it("should die when killed", async () => { - const child = getChild(); - strictEqual(child.kill(), true); - strictEqual(await child._getIsReallyKilled(), true); - }); }); describe("ChildProcess spawn bad stdio", () => { |