summaryrefslogtreecommitdiff
path: root/cli/tests/integration/check_tests.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-21 23:47:46 +0100
committerGitHub <noreply@github.com>2024-01-21 22:47:46 +0000
commit568337f3f43ef050cbbd95995f94e39663530ab4 (patch)
tree368f7d0740073f7b33e8da9aeada13bbdd95f595 /cli/tests/integration/check_tests.rs
parent35fc6f3ab91a9f9fdecff5072677f12cde295f3a (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/check_tests.rs')
-rw-r--r--cli/tests/integration/check_tests.rs27
1 files changed, 5 insertions, 22 deletions
diff --git a/cli/tests/integration/check_tests.rs b/cli/tests/integration/check_tests.rs
index 6b2bf96d4..f836957ce 100644
--- a/cli/tests/integration/check_tests.rs
+++ b/cli/tests/integration/check_tests.rs
@@ -99,20 +99,14 @@ itest!(check_node_builtin_modules_js {
});
itest!(check_no_error_truncation {
- args: "check --quiet check/no_error_truncation/main.ts --config check/no_error_truncation/deno.json",
- output: "check/no_error_truncation/main.out",
- envs: vec![("NO_COLOR".to_string(), "1".to_string())],
- exit_code: 1,
- });
-
-itest!(check_broadcast_channel_stable {
- args: "check --quiet check/broadcast_channel.ts",
- output: "check/broadcast_channel.ts.error.out",
+ args: "check --quiet check/no_error_truncation/main.ts --config check/no_error_truncation/deno.json",
+ output: "check/no_error_truncation/main.out",
+ envs: vec![("NO_COLOR".to_string(), "1".to_string())],
exit_code: 1,
});
-itest!(check_broadcast_channel_unstable {
- args: "check --quiet --unstable check/broadcast_channel.ts",
+itest!(check_broadcast_channel {
+ args: "check --quiet check/broadcast_channel.ts",
exit_code: 0,
});
@@ -122,17 +116,6 @@ itest!(check_deno_not_found {
exit_code: 1,
});
-itest!(check_deno_unstable_not_found {
- args: "check --quiet --no-config check/deno_unstable_not_found/main.ts",
- output: "check/deno_unstable_not_found/main.out",
- exit_code: 1,
-});
-
-itest!(check_deno_unstable_from_config {
- args: "check --quiet --config check/deno_unstable_not_found/deno.json check/deno_unstable_not_found/main.ts",
- output_str: Some(""),
-});
-
itest!(check_with_exclude_option_by_dir {
args:
"check --quiet --config check/exclude_option/deno.exclude_dir.json check/exclude_option/ignored/index.ts",