diff options
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 d7786e966..0c11ea75e 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2136,6 +2136,18 @@ fn _066_prompt() { util::test_pty(args, output, input); } +itest!(_073_worker_error { + args: "run -A 073_worker_error.ts", + output: "073_worker_error.ts.out", + exit_code: 1, +}); + +itest!(_074_worker_nested_error { + args: "run -A 074_worker_nested_error.ts", + output: "074_worker_nested_error.ts.out", + exit_code: 1, +}); + itest!(js_import_detect { args: "run --quiet --reload js_import_detect.ts", output: "js_import_detect.ts.out", |