mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
feat(test): Represent uncaught errors (#14513)
This commit adds better reporting of uncaught errors in top level scope of testing files. This change affects both console runner as well as LSP runner.
This commit is contained in:
parent
ab728e9ccf
commit
23efc4fcab
12 changed files with 316 additions and 53 deletions
|
@ -368,3 +368,9 @@ fn file_protocol() {
|
|||
})
|
||||
.run();
|
||||
}
|
||||
|
||||
itest!(uncaught_errors {
|
||||
args: "test --quiet test/uncaught_errors_1.ts test/uncaught_errors_2.ts test/uncaught_errors_3.ts",
|
||||
output: "test/uncaught_errors.out",
|
||||
exit_code: 1,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue