-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Convert junit report to ctrf report | ||
|
||
if [ ! -e test-reports/vitest.junit.xml ]; then | ||
# The junit-to-ctrf npm package exits with a 0 status code even if it fails | ||
# to parse the JUnit report, so check for the file manually. | ||
echo "No JUnit report found at test-reports/vitest.junit.xml" | ||
exit 1 | ||
fi | ||
|
||
junit-to-ctrf test-reports/vitest.junit.xml --output test-reports/ctrf-report.json |