diff options
Diffstat (limited to 'tests/unit/test_util.ts')
-rw-r--r-- | tests/unit/test_util.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/test_util.ts b/tests/unit/test_util.ts index 16ca735ac..e78afb828 100644 --- a/tests/unit/test_util.ts +++ b/tests/unit/test_util.ts @@ -25,7 +25,8 @@ export { delay } from "@std/async/delay"; export { readLines } from "@std/io/read-lines"; export { parseArgs } from "@std/cli/parse-args"; -export const DENO_FUTURE = Deno.env.get("DENO_FUTURE") === "1"; +// TODO(2.0): remove this and all the tests that depend on it. +export const DENO_FUTURE = true; export function pathToAbsoluteFileUrl(path: string): URL { path = resolve(path); |