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 65261dd commit 2269a91Copy full SHA for 2269a91
src/testController.ts
@@ -409,7 +409,7 @@ export function configureTestController(
409
) {
410
// output is a raw terminal, we need to wrap lines with CRLF
411
// note replace("\n", "\r\n") is not working correctly
412
- for (const line of output.split("\n")) {
+ for (const line of output.split(/\r?\n/)) {
413
run.appendOutput(line, undefined, test);
414
run.appendOutput("\r\n", undefined, test);
415
}
0 commit comments