summaryrefslogtreecommitdiff
path: root/cli/tests/integration/test_tests.rs
diff options
context:
space:
mode:
authorAlexander Michaud <131308558+armichaud@users.noreply.github.com>2023-08-17 17:41:29 -0400
committerGitHub <noreply@github.com>2023-08-17 23:41:29 +0200
commitb5839eefcf02e62e9e77e8095f372ac06a523cba (patch)
tree1e1c1bf0f992936ce52bcfc6d568e5e787f7916b /cli/tests/integration/test_tests.rs
parentf343391a9f97d29ad287f247c06aa370eb7cab50 (diff)
fix(test): JUnit reporter includes file, line and column attributes (#20174)
Closes #20156
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r--cli/tests/integration/test_tests.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs
index bcf050adf..04465dd53 100644
--- a/cli/tests/integration/test_tests.rs
+++ b/cli/tests/integration/test_tests.rs
@@ -267,6 +267,11 @@ itest!(exit_sanitizer {
exit_code: 1,
});
+itest!(junit {
+ args: "test --reporter junit test/pass.ts",
+ output: "test/pass.junit.out",
+});
+
itest!(clear_timeout {
args: "test test/clear_timeout.ts",
exit_code: 0,