summaryrefslogtreecommitdiff
path: root/cli/tests/npm_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-12-07 13:33:26 -0500
committerGitHub <noreply@github.com>2022-12-07 13:33:26 -0500
commit192f07bb7e2076808cae1eeb6c701cdd3d8d42cd (patch)
tree68fb735a3b0b09295fb841e59018cbd0f418ab91 /cli/tests/npm_tests.rs
parent9c1ab39e19073501618947ffa370ba59b04ec6cc (diff)
feat(flags): add `deno check --all` as new preferred alias for `--remote` (#16702)
Closes #16374
Diffstat (limited to 'cli/tests/npm_tests.rs')
-rw-r--r--cli/tests/npm_tests.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/npm_tests.rs b/cli/tests/npm_tests.rs
index 61b2dc886..05dc83cfd 100644
--- a/cli/tests/npm_tests.rs
+++ b/cli/tests/npm_tests.rs
@@ -264,7 +264,7 @@ mod npm {
});
itest!(check_all {
- args: "check --remote npm/check_errors/main.ts",
+ args: "check --all npm/check_errors/main.ts",
output: "npm/check_errors/main_all.out",
envs: env_vars_for_npm_tests(),
http_server: true,
@@ -320,7 +320,7 @@ mod npm {
});
itest!(types_entry_value_not_exists {
- args: "check --remote npm/types_entry_value_not_exists/main.ts",
+ args: "check --all npm/types_entry_value_not_exists/main.ts",
output: "npm/types_entry_value_not_exists/main.out",
envs: env_vars_for_npm_tests(),
http_server: true,
@@ -328,7 +328,7 @@ mod npm {
});
itest!(types_exports_import_types {
- args: "check --remote npm/types_exports_import_types/main.ts",
+ args: "check --all npm/types_exports_import_types/main.ts",
output: "npm/types_exports_import_types/main.out",
envs: env_vars_for_npm_tests(),
http_server: true,
@@ -336,7 +336,7 @@ mod npm {
});
itest!(types_no_types_entry {
- args: "check --remote npm/types_no_types_entry/main.ts",
+ args: "check --all npm/types_no_types_entry/main.ts",
output: "npm/types_no_types_entry/main.out",
envs: env_vars_for_npm_tests(),
http_server: true,