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 be22745 commit f9499d8Copy full SHA for f9499d8
src/TestExplorer/TestParsers/XCTestOutputParser.ts
@@ -151,6 +151,8 @@ export class XCTestOutputParser implements IXCTestOutputParser {
151
* @param output Output from `swift test`
152
*/
153
public parseResult(rawOutput: string, runState: ITestRunState) {
154
+ console.log("RAW XCTEST OUTPUT:", rawOutput.split("\n").join("\n>>>> "));
155
+
156
// Windows is inserting ANSI codes into the output to do things like clear the cursor,
157
// which we don't care about.
158
const output = process.platform === "win32" ? stripAnsi(rawOutput) : rawOutput;
0 commit comments