Skip to content

Commit

Permalink
Update test-reporter.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
APageNHS authored Jan 5, 2024
1 parent a8a5726 commit 65111a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test-reporter/test-reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ export default class TestReporter implements CustomReporter {
gitHubSummary += ' Name '+ gitrepoName+' '+NEW_LINE+NEW_LINE;
}
gitHubSummary += ' :x: Failed '+ results.numFailedTests+' '+NEW_LINE;
if (process.env.SKIPPEDWARNINGS > 0) {
gitHubSummary += ' :x: Warnings '+ process.env.SKIPPEDWARNINGS +' '+NEW_LINE;
}
gitHubSummary += ' :white_check_mark: Passed '+ results.numPassedTests+' '+NEW_LINE;
gitHubSummary += NEW_LINE+NEW_LINE;
for(let parent of results.testResults) {
Expand Down

0 comments on commit 65111a6

Please sign in to comment.