Created
January 13, 2017 22:29
-
-
Save mrcaron/eeb03a7777b6352eac38335ecaf1d424 to your computer and use it in GitHub Desktop.
VSCode TAP task problem matcher
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"problemMatcher" : { | |
"owner": "TAP", | |
"fileLocation" : "relative", | |
"pattern" : [ | |
{ | |
"regexp": "^#\\s+(Failed test '.*')", | |
"message": 1 | |
}, | |
{ | |
"regexp": "^#\\s+at (.*) line (\\d+)", | |
"line": 2, | |
"file": 1 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment