diff options
author | Andrew Mitchell <32021055+mitch292@users.noreply.github.com> | 2021-03-18 20:02:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 20:02:29 -0400 |
commit | 277e19f4d26b66bbba99b0a3d6539b524dc88830 (patch) | |
tree | f1aa56bf62b547b8823cd2efecc5f87770b1563a /cli/tests/integration_tests.rs | |
parent | 7d12dd18992cc58ce9866c2e42d914c8c8cf6d7a (diff) |
fix(cli/bundle): display anyhow error chain (#9822)
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 4be586351..e7fc7797b 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3148,6 +3148,12 @@ console.log("finish"); http_server: true, }); + itest!(error_027_bare_import_error { + args: "bundle error_027_bare_import_error.ts", + output: "error_027_bare_import_error.ts.out", + exit_code: 1, + }); + itest!(error_missing_module_named_import { args: "run --reload error_missing_module_named_import.ts", output: "error_missing_module_named_import.ts.out", |