diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-09-17 16:54:52 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 16:54:52 +1000 |
commit | 99de9eb4c2a78bf0efdcb5407bec76833dc459cd (patch) | |
tree | e8a9047cfee12a68a440c3d43843c81965ab4cc1 /cli/tests/integration/run_tests.rs | |
parent | 00948a6d680f855dcd0b60628a4b97186496a58c (diff) |
fix(cli): don't ignore diagnostics about for await (#12116)
Fixes #12115
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 88aff0986..14e0e1241 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -622,6 +622,12 @@ itest!(error_026_remote_import_error { http_server: true, }); +itest!(error_for_await { + args: "run --reload error_for_await.ts", + output: "error_for_await.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", |