summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-08-29 01:21:59 +0100
committerGitHub <noreply@github.com>2024-08-29 02:21:59 +0200
commit27d0897841386068560ffad256c6c8ac27adefe1 (patch)
tree8d1a9efce1ef227e438b1cd016ceae08fcfde1fa /tests
parent52fb6582e7121a6c253c83b95e9706d236262cbe (diff)
test: run specs::npm::exec_file_inside_npm_package with DENO_FUTURE=1 (#25282)
The test is failing if run with `DENO_FUTURE=1` which is blocking https://github.com/denoland/deno/pull/25213. --------- Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/specs/npm/exec_file_inside_npm_package/__test__.jsonc5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/specs/npm/exec_file_inside_npm_package/__test__.jsonc b/tests/specs/npm/exec_file_inside_npm_package/__test__.jsonc
index f816bad86..01e6cc431 100644
--- a/tests/specs/npm/exec_file_inside_npm_package/__test__.jsonc
+++ b/tests/specs/npm/exec_file_inside_npm_package/__test__.jsonc
@@ -1,4 +1,7 @@
{
"args": "run -A main.ts",
- "output": "main.out"
+ "output": "main.out",
+ "envs": {
+ "DENO_FUTURE": "1"
+ }
}