diff options
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index c062d3371..d836bc71a 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1506,6 +1506,12 @@ itest!(deno_test_only { output: "deno_test_only.ts.out", }); +itest!(deno_test_no_check { + args: "test --no-check test_runner_test.ts", + exit_code: 1, + output: "deno_test.out", +}); + #[test] fn timeout_clear() { // https://github.com/denoland/deno/issues/7599 |