diff options
author | 2023-01-29 22:42:03 -0800 | |
---|---|---|
committer | 2023-01-29 22:42:03 -0800 | |
commit | 9cd9df698acc90e5e91de8234e51da58c054fe1f (patch) | |
tree | 44278e9fa1ec062ff655d4c74797f3a607810596 | |
parent | 57edf3d91fa44bef6e4c04387c9f977911e1b8f2 (diff) | |
download | bun-9cd9df698acc90e5e91de8234e51da58c054fe1f.tar.gz bun-9cd9df698acc90e5e91de8234e51da58c054fe1f.tar.zst bun-9cd9df698acc90e5e91de8234e51da58c054fe1f.zip |
Update child_process-node.test.js
-rw-r--r-- | test/bun.js/child_process-node.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/child_process-node.test.js b/test/bun.js/child_process-node.test.js index a225172ce..63bb8470a 100644 --- a/test/bun.js/child_process-node.test.js +++ b/test/bun.js/child_process-node.test.js @@ -353,7 +353,7 @@ describe("child_process cwd", () => { ); }); - it("shouldn't try to chdir to an invalid cwd", (done) => { + it.skip("shouldn't try to chdir to an invalid cwd", (done) => { const createDone = createDoneDotAll(done); // Spawn() shouldn't try to chdir() to invalid arg, so this should just work testCwd({ cwd: "" }, { expectPidType: "number" }, createDone(1500)); |