Skip to content

Commit f9499d8

Browse files
committed
More debugging
1 parent be22745 commit f9499d8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/TestExplorer/TestParsers/XCTestOutputParser.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ export class XCTestOutputParser implements IXCTestOutputParser {
151151
* @param output Output from `swift test`
152152
*/
153153
public parseResult(rawOutput: string, runState: ITestRunState) {
154+
console.log("RAW XCTEST OUTPUT:", rawOutput.split("\n").join("\n>>>> "));
155+
154156
// Windows is inserting ANSI codes into the output to do things like clear the cursor,
155157
// which we don't care about.
156158
const output = process.platform === "win32" ? stripAnsi(rawOutput) : rawOutput;

0 commit comments

Comments
 (0)