Skip to content

Commit

Permalink
make it break
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicmh committed Apr 11, 2024
1 parent 1ed589a commit 032ab54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parsers/dart-json/dart-json-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class DartJsonParser implements TestParser {
const group = suite.groups[evt.test.groupIDs[evt.test.groupIDs.length - 1]]
group.tests.push(test)
tests[evt.test.id] = test
} else if (isTestDoneEvent(evt) && tests[evt.testID]) {
} else if (isTestDoneEvent(evt) && !evt.hidden && tests[evt.testID]) {
tests[evt.testID].testDone = evt
} else if (isErrorEvent(evt) && tests[evt.testID]) {
tests[evt.testID].error = evt
Expand Down Expand Up @@ -147,7 +147,7 @@ export class DartJsonParser implements TestParser {
group.tests.sort((a, b) => (a.testStart.test.line ?? 0) - (b.testStart.test.line ?? 0))
core.info('group.tests: ' + JSON.stringify(group.tests))
const tests = group.tests
.filter(tc => !tc.testDone!!.hidden)
// .filter(tc => !tc.testDone!!.hidden)
.map(tc => {
const error = this.getError(suite, tc)
const testName =
Expand Down

0 comments on commit 032ab54

Please sign in to comment.