Skip to content

Commit

Permalink
Merge pull request #127 from yash-pathak-groww/main
Browse files Browse the repository at this point in the history
Closes #105
  • Loading branch information
ASaiAnudeep authored Mar 30, 2023
2 parents 48ea584 + e877be3 commit ef93252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/targets/slack.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function getSuiteSummary({ target, suite }) {
}

function getSuiteTitle(suite) {
const emoji = suite.status === 'PASS' ? '✅' : '❌';
const emoji = suite.status === 'PASS' ? '✅' : suite.total === suite.skipped ? '⏭️' : '❌';
return `${emoji} ${suite.name}`;
}

Expand Down

0 comments on commit ef93252

Please sign in to comment.