diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-10-23 12:31:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 13:31:49 +0200 |
commit | be15cf285dbf3a7b3025d34cb80e87e54a55dd93 (patch) | |
tree | ae0ae0e1f4c71ed4f4d0cbdfc374ba1deebb07ac /cli/tests/integration_tests.rs | |
parent | 29e05bb014015085615f648a31f180ed9dd49e5a (diff) |
feat(cli): Add deno cache --test and --worker (#7920)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 11240e71b..b448379b9 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2137,6 +2137,18 @@ fn _066_prompt() { util::test_pty(args, output, input); } +itest!(_068_cache_test_type_error { + args: "cache --test=test_type_error", + output: "068_cache_test_type_error.out", + exit_code: 1, +}); + +itest!(_069_cache_worker { + args: "cache --worker subdir/worker_globals.ts", + output_str: Some("[WILDCARD]"), + exit_code: 0, +}); + itest!(_073_worker_error { args: "run -A 073_worker_error.ts", output: "073_worker_error.ts.out", |