diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-22 19:39:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 18:39:13 +0000 |
commit | df614ff6e5cc0b3d48534fb20a348412bebea576 (patch) | |
tree | 20b866e261699f6b02784c53656ad920e1da7598 | |
parent | 049982c33295f87d73ba1d7be7c8fc03069ae001 (diff) |
test: ignore flaky node:child_process tests (#18360)
-rw-r--r-- | cli/tests/unit_node/child_process_test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/unit_node/child_process_test.ts b/cli/tests/unit_node/child_process_test.ts index c6e2e3ef2..a3bb6b888 100644 --- a/cli/tests/unit_node/child_process_test.ts +++ b/cli/tests/unit_node/child_process_test.ts @@ -507,6 +507,7 @@ Deno.test({ }); Deno.test({ + ignore: true, name: "[node/child_process] ChildProcess.unref()", async fn() { const script = path.join( @@ -527,6 +528,7 @@ Deno.test({ }); Deno.test({ + ignore: true, name: "[node/child_process] child_process.fork", async fn() { const testdataDir = path.join( |