diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-11-22 13:06:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 14:06:51 +0100 |
commit | 14877f7fe21573e1ed0ce696a107543bbba995b2 (patch) | |
tree | af260fdab14b2afac2400341c536ea7d2dca0570 /cli/tests/integration_tests.rs | |
parent | 686a17fc075ead774f5b692329d11e72139e3f02 (diff) |
feat(unstable): Add deno test --no-run (#8093)
This commit adds new flag to "deno test" subcommand
called "--no-run" that allows to preload, cache an type
check.
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 3618c2e77..17b9fbc1b 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2185,6 +2185,12 @@ fn _066_prompt() { util::test_pty(args, output, input); } +itest!(_067_test_no_run_type_error { + args: "test --unstable --no-run test_type_error", + output: "067_test_no_run_type_error.out", + exit_code: 1, +}); + itest!(_073_worker_error { args: "run -A 073_worker_error.ts", output: "073_worker_error.ts.out", |