Skip to content

Instantly share code, notes, and snippets.

@mrcaron
Created January 13, 2017 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrcaron/eeb03a7777b6352eac38335ecaf1d424 to your computer and use it in GitHub Desktop.
Save mrcaron/eeb03a7777b6352eac38335ecaf1d424 to your computer and use it in GitHub Desktop.
VSCode TAP task problem matcher
"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