diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-05-17 23:53:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 23:53:42 +0200 |
commit | 9a85a95c435968e5bdf6e71192be3ed239fd2205 (patch) | |
tree | 7c51e96bd0f6f7a2565f688bef85de82b5fdf790 /cli/tests/integration/run_tests.rs | |
parent | 330c820ae8d7826dfe3d88c01ba07728121fa021 (diff) |
feat: subcommands type-check only local files by default (#14623)
This commit changes default mode of type-checking to "local"
and adds "--check" flag to following subcommands:
- deno bench
- deno bundle
- deno cache
- deno compile
- deno eval
- deno install
- deno test
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 4dc17bacb..c1ed59f14 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -963,7 +963,7 @@ itest!(no_check_decorators { }); itest!(check_remote { - args: "run --quiet --reload no_check_remote.ts", + args: "run --quiet --reload --check=all no_check_remote.ts", output: "no_check_remote.ts.disabled.out", exit_code: 1, http_server: true, |