We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3f9c1 commit 5b1e785Copy full SHA for 5b1e785
src/utils/swift-testing-event-parser.ts
@@ -123,6 +123,9 @@ export function createSwiftTestingEventParser(
123
// Swift Testing result line: ✔/✘/◇ Test "Name" passed/failed/skipped (non-failure or no pending issue)
124
if (stResult) {
125
completedCount += 1;
126
+ if (stResult.status === 'failed') {
127
+ failedCount += 1;
128
+ }
129
if (stResult.status === 'skipped') {
130
skippedCount += 1;
131
}
0 commit comments