diff options
Diffstat (limited to 'test/bun.js/child_process-node.test.js')
-rw-r--r-- | test/bun.js/child_process-node.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bun.js/child_process-node.test.js b/test/bun.js/child_process-node.test.js index 41e3e6afc..664fc8f8b 100644 --- a/test/bun.js/child_process-node.test.js +++ b/test/bun.js/child_process-node.test.js @@ -188,7 +188,7 @@ describe("ChildProcess spawn bad stdio", () => { return child; } - it("should handle normal execution of child process", (done) => { + it.skip("should handle normal execution of child process", (done) => { createChild( {}, (err, stdout, stderr) => { @@ -200,7 +200,7 @@ describe("ChildProcess spawn bad stdio", () => { ); }); - it("should handle error event of child process", (done) => { + it.skip("should handle error event of child process", (done) => { const error = new Error("foo"); createChild( {}, |