diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/check_tests.rs | 2 | ||||
-rw-r--r-- | cli/tests/npm_tests.rs | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cli/tests/check_tests.rs b/cli/tests/check_tests.rs index 3a57c3f55..54f9cc272 100644 --- a/cli/tests/check_tests.rs +++ b/cli/tests/check_tests.rs @@ -28,7 +28,7 @@ mod check { }); itest!(check_all { - args: "check --quiet --remote check/check_all.ts", + args: "check --quiet --all check/check_all.ts", output: "check/check_all.out", http_server: true, exit_code: 1, 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, |