summaryrefslogtreecommitdiff
path: root/cli/tests/integration/test_tests.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2022-05-09 10:44:50 +0100
committerGitHub <noreply@github.com>2022-05-09 11:44:50 +0200
commit23efc4fcab2ca3b8b47539a7fb1d904efc57eb7c (patch)
tree54dd76ef9d2071245c9ad28610f78c72937546eb /cli/tests/integration/test_tests.rs
parentab728e9ccfff2d1ac6362b22b579b00120a39f67 (diff)
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.
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r--cli/tests/integration/test_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs
index 0cbc3130f..05a663215 100644
--- a/cli/tests/integration/test_tests.rs
+++ b/cli/tests/integration/test_tests.rs
@@ -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,
+});