diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-11 17:04:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 17:04:57 +0100 |
commit | 7f0546a6b736430e6c39c55cfa77f39e70ffc9a2 (patch) | |
tree | 9d98dd492d9cc7212421cfcb113eb6d98df9f881 /cli/tests/integration/run_tests.rs | |
parent | 38f0b41e7d16db24c1ba7c7cc7b536f4d7e169e9 (diff) |
fix(npm): remove forgotten unstable check (#16598)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 09fc7b426..fd60e85b7 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2918,15 +2918,9 @@ itest!(nested_error { exit_code: 1, }); -itest!(node_env_var_allowlist_with_unstable_flag { +itest!(node_env_var_allowlist { args: "run --unstable --no-prompt run/node_env_var_allowlist.ts", - output: "run/node_env_var_allowlist_with_unstable_flag.ts.out", - exit_code: 1, -}); - -itest!(node_env_var_allowlist_without_unstable_flag { - args: "run --no-prompt run/node_env_var_allowlist.ts", - output: "run/node_env_var_allowlist_without_unstable_flag.ts.out", + output: "run/node_env_var_allowlist.ts.out", exit_code: 1, }); |