diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-21 23:47:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 22:47:46 +0000 |
commit | 568337f3f43ef050cbbd95995f94e39663530ab4 (patch) | |
tree | 368f7d0740073f7b33e8da9aeada13bbdd95f595 /cli/tests/integration/run_tests.rs | |
parent | 35fc6f3ab91a9f9fdecff5072677f12cde295f3a (diff) |
fix: remove conditional unstable type-checking from other commands (#21991)
It appears I missed this in https://github.com/denoland/deno/pull/21825.
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 3fd013376..4e3fa8de2 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1566,17 +1566,6 @@ itest!(top_level_for_await_ts { output: "run/top_level_await/top_level_for_await.out", }); -itest!(unstable_disabled { - args: "run --reload --check run/unstable.ts", - exit_code: 1, - output: "run/unstable_disabled.out", -}); - -itest!(unstable_enabled { - args: "run --quiet --reload --unstable run/unstable.ts", - output: "run/unstable_enabled.out", -}); - itest!(unstable_disabled_js { args: "run --reload run/unstable.js", output: "run/unstable_disabled_js.out", |