diff options
Diffstat (limited to 'tests/unit/process_test.ts')
-rw-r--r-- | tests/unit/process_test.ts | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/tests/unit/process_test.ts b/tests/unit/process_test.ts index 111b18421..040c6ee19 100644 --- a/tests/unit/process_test.ts +++ b/tests/unit/process_test.ts @@ -5,7 +5,6 @@ import { assertStrictEquals, assertStringIncludes, assertThrows, - DENO_FUTURE, } from "./test_util.ts"; Deno.test( @@ -364,11 +363,7 @@ Deno.test( ); Deno.test( - { - // Ignoring because uses `file.rid` - ignore: DENO_FUTURE, - permissions: { run: true, write: true, read: true }, - }, + { permissions: { run: true, write: true, read: true } }, async function runRedirectStdoutStderr() { const tempDir = await Deno.makeTempDir(); const fileName = tempDir + "/redirected_stdio.txt"; @@ -397,16 +392,11 @@ Deno.test( assertStringIncludes(text, "error"); assertStringIncludes(text, "output"); - console.log("finished tgis test"); }, ); Deno.test( - { - // Ignoring because uses `file.rid` - ignore: DENO_FUTURE, - permissions: { run: true, write: true, read: true }, - }, + { permissions: { run: true, write: true, read: true } }, async function runRedirectStdin() { const tempDir = await Deno.makeTempDir(); const fileName = tempDir + "/redirected_stdio.txt"; |