diff options
author | 2023-07-27 18:40:57 -0700 | |
---|---|---|
committer | 2023-07-27 20:46:25 -0700 | |
commit | f3153fbee9246c1a39e2eaafe115e104d78d8c64 (patch) | |
tree | 59f11dc5ec3742bb5a3b15f8d1486a98203b7700 | |
parent | 7fa71dd032aa5dbbc531c5f113b63f7b0ae9e618 (diff) | |
download | bun-f3153fbee9246c1a39e2eaafe115e104d78d8c64.tar.gz bun-f3153fbee9246c1a39e2eaafe115e104d78d8c64.tar.zst bun-f3153fbee9246c1a39e2eaafe115e104d78d8c64.zip |
Uncomment test
-rw-r--r-- | test/js/node/child_process/child_process-node.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/child_process/child_process-node.test.js b/test/js/node/child_process/child_process-node.test.js index 25c796736..579ddbd5e 100644 --- a/test/js/node/child_process/child_process-node.test.js +++ b/test/js/node/child_process/child_process-node.test.js @@ -377,7 +377,7 @@ describe("child_process default options", () => { }); describe("child_process double pipe", () => { - it.todo("should allow two pipes to be used at once", done => { + it("should allow two pipes to be used at once", done => { // const { mustCallAtLeast, mustCall } = createCallCheckCtx(done); const mustCallAtLeast = fn => fn; const mustCall = fn => fn; |