We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7407fb9 commit 9266beeCopy full SHA for 9266bee
src/TestExplorer/TestParsers/SwiftTestingOutputParser.ts
@@ -67,7 +67,7 @@ interface RunEnded {
67
68
interface BaseEvent {
69
timestamp: number;
70
- message: EventMessage[];
+ messages: EventMessage[];
71
testID: string;
72
}
73
@@ -160,7 +160,7 @@ export class SwiftTestingOutputParser {
160
const testName = this.testName(item.payload.testID);
161
const testIndex = runState.getTestItemIndex(testName, undefined);
162
const sourceLocation = item.payload.sourceLocation;
163
- item.payload.message.forEach(message => {
+ item.payload.messages.forEach(message => {
164
runState.recordIssue(testIndex, message.text, {
165
file: sourceLocation._filePath,
166
line: sourceLocation.line,
0 commit comments