aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js
diff options
context:
space:
mode:
authorGravatar Dylan Conway <dylan.conway567@gmail.com> 2022-12-06 16:25:07 -0800
committerGravatar Dylan Conway <dylan.conway567@gmail.com> 2022-12-06 16:25:39 -0800
commit51d69d8c853ee634084c10b21720c0e201cc7721 (patch)
treed5c753beac1563cce7cd195c976528b06a1c1f3f /test/bun.js
parent4dd2cb33b7603983f2ae9df425b8c0369acc9b61 (diff)
downloadbun-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.js6
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", () => {