diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-31 22:25:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-31 21:25:32 +0000 |
commit | 4e19474129222b122eeb8fb4c4f289e29a5184bd (patch) | |
tree | 2844e3a47250e6cc3ebfd3aa77d65c9363186cc8 /tests/specs/future/runtime_api | |
parent | 3a63572187ef435e254a4c753d03a39effae0761 (diff) |
chore: remove DENO_FUTURE=1 from spec tests (#25329)
Towards https://github.com/denoland/deno/issues/25241
Diffstat (limited to 'tests/specs/future/runtime_api')
-rw-r--r-- | tests/specs/future/runtime_api/__test__.jsonc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/specs/future/runtime_api/__test__.jsonc b/tests/specs/future/runtime_api/__test__.jsonc index c1b3b9b17..a52e4299d 100644 --- a/tests/specs/future/runtime_api/__test__.jsonc +++ b/tests/specs/future/runtime_api/__test__.jsonc @@ -2,17 +2,11 @@ "steps": [ { "args": "run -A --unstable-fs --config ../../../config/deno.json main.js", - "output": "main.out", - "envs": { - "DENO_FUTURE": "1" - } + "output": "main.out" }, { "args": "run -A --unstable-fs --config ../../../config/deno.json worker.js", - "output": "main.out", - "envs": { - "DENO_FUTURE": "1" - } + "output": "main.out" } ] } |