diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-07-30 16:09:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-30 16:09:42 +0200 |
commit | 20a89d46c4af091f30daf0df20b12c91962f9b14 (patch) | |
tree | 600279208bfbe3c3098821956da1ef3cd1eaf65d /cli/tests/integration/run_tests.rs | |
parent | 3f0dcd3b80b872df6d287ef4a7afa4388c5a3d91 (diff) |
fix(core): BorrowMutError in nested error (#15352)
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 29e424aae..7354dbf1d 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2792,3 +2792,9 @@ itest!(unhandled_rejection_sync_error { args: "run --check unhandled_rejection_sync_error.ts", output: "unhandled_rejection_sync_error.ts.out", }); + +itest!(nested_error { + args: "run nested_error.ts", + output: "nested_error.ts.out", + exit_code: 1, +}); |