diff options
Diffstat (limited to 'tests/unit_node')
-rw-r--r-- | tests/unit_node/_test_utils.ts | 1 | ||||
-rw-r--r-- | tests/unit_node/child_process_test.ts | 1 | ||||
-rw-r--r-- | tests/unit_node/process_test.ts | 3 |
3 files changed, 0 insertions, 5 deletions
diff --git a/tests/unit_node/_test_utils.ts b/tests/unit_node/_test_utils.ts index d9dd4e5d5..c451ccd84 100644 --- a/tests/unit_node/_test_utils.ts +++ b/tests/unit_node/_test_utils.ts @@ -21,7 +21,6 @@ export async function assertCallbackErrorUncaught( const p = new Deno.Command(Deno.execPath(), { args: [ "eval", - "--unstable", `${prelude ?? ""} ${invocation}(err) => { diff --git a/tests/unit_node/child_process_test.ts b/tests/unit_node/child_process_test.ts index d613d2989..7e6977740 100644 --- a/tests/unit_node/child_process_test.ts +++ b/tests/unit_node/child_process_test.ts @@ -528,7 +528,6 @@ Deno.test({ const childProcess = spawn(Deno.execPath(), [ "run", "-A", - "--unstable", script, ]); const deferred = Promise.withResolvers<void>(); diff --git a/tests/unit_node/process_test.ts b/tests/unit_node/process_test.ts index 579b51116..944686a87 100644 --- a/tests/unit_node/process_test.ts +++ b/tests/unit_node/process_test.ts @@ -173,7 +173,6 @@ Deno.test({ args: [ "run", "--quiet", - "--unstable", "./testdata/process_exit.ts", ], cwd, @@ -895,7 +894,6 @@ Deno.test({ args: [ "run", "--quiet", - "--unstable", "./testdata/process_exit2.ts", ], cwd: testDir, @@ -914,7 +912,6 @@ Deno.test({ args: [ "run", "--quiet", - "--unstable", "./testdata/process_really_exit.ts", ], cwd: testDir, |