diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-11-30 09:23:30 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 09:23:30 +1100 |
commit | 18a63dd977ade20e17d41c08acbefde6eada8572 (patch) | |
tree | ba233cf2c4d7be978008f736f25a677d1e9dae8a /cli/tests/integration | |
parent | f3b74350da69cb8cc0aedb1c1570abe2c64741ba (diff) |
feat: add `--no-check=remote` flag (#12766)
Closes #11970
Diffstat (limited to 'cli/tests/integration')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 47041e499..33ca787d9 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -920,6 +920,19 @@ itest!(no_check_decorators { output: "no_check_decorators.ts.out", }); +itest!(check_remote { + args: "run --quiet --reload no_check_remote.ts", + output: "no_check_remote.ts.disabled.out", + exit_code: 1, + http_server: true, +}); + +itest!(no_check_remote { + args: "run --quiet --reload --no-check=remote no_check_remote.ts", + output: "no_check_remote.ts.enabled.out", + http_server: true, +}); + itest!(runtime_decorators { args: "run --quiet --reload --no-check runtime_decorators.ts", output: "runtime_decorators.ts.out", |