diff --git a/index.js b/index.js index 7c2e338..43ef157 100644 --- a/index.js +++ b/index.js @@ -96,7 +96,9 @@ function formatDetails(heading, content) { } function statusEmoji(test) { - if (test.failure || test.error) { + if (test.failure) { + return ':boom:' + } else if (test.error) { return ':x:' } else if (test.skip) { return ':leftwards_arrow_with_hook:'