diff options
Diffstat (limited to 'tests/unit_node/process_test.ts')
-rw-r--r-- | tests/unit_node/process_test.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/unit_node/process_test.ts b/tests/unit_node/process_test.ts index 5e2fb69c2..24fd3909d 100644 --- a/tests/unit_node/process_test.ts +++ b/tests/unit_node/process_test.ts @@ -814,10 +814,6 @@ Deno.test("process.exitCode in should change exit code", async () => { 127, ); await exitCodeTest( - "import process from 'node:process'; process.exitCode = 2.5;", - 2, - ); - await exitCodeTest( "import process from 'node:process'; process.exitCode = '10';", 10, ); @@ -825,10 +821,6 @@ Deno.test("process.exitCode in should change exit code", async () => { "import process from 'node:process'; process.exitCode = '0x10';", 16, ); - await exitCodeTest( - "import process from 'node:process'; process.exitCode = NaN;", - 1, - ); }); Deno.test("Deno.exit should override process exit", async () => { |