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 38dce0d commit d96b8e9Copy full SHA for d96b8e9
src/testUtils.ts
@@ -497,7 +497,7 @@ function processTestResultLineInStandardMode(
497
outputChannel: vscode.OutputChannel) {
498
// 1=ok/FAIL/?, 2=package, 3=time/(cached)/[no test files]
499
const packageResultLineRE = /^(ok|FAIL|\?)\s+(\S+)\s+([0-9\.]+s|\(cached\)|\[no test files\])/;
500
- const lineWithErrorRE = /^(\t|\s\s\s\s)\S/;
+ const lineWithErrorRE = /^\s+(\S+\.go):(\d+):/;
501
502
return (line: string) => {
503
testResultLines.push(line);
0 commit comments