ava-tap-json
Advanced tools
Comparing version 2.0.1 to 2.0.2
# Ava TAP JSON | ||
## 2.0.1 | ||
AVA 2.3.0 is printing logs starting with `#` instead of `*`, we included this new character in our parser and created an [issue](https://github.com/vadimdemedes/supertap/issues/3) to remove * from https://github.com/vadimdemedes/supertap | ||
## 2.0.0 | ||
Breaking changes: | ||
- "name", "message", "at" tags inside extra delimiters are exposed as arrays since ava now includes multiline yaml content in version 2.1.0 https://github.com/avajs/ava/releases/tag/v2.1.0 for errors' stacktrace |
@@ -90,4 +90,4 @@ /* Modules */ | ||
function shouldBeParsed(input) { | ||
const extraDelimiterOrCommentRegExp = /-{3}|\.{3}|^\*/; | ||
const extraDelimiterOrCommentRegExp = /-{3}|\.{3}|^\s*\*|^\s*#/; | ||
return !(input === "" || extraDelimiterOrCommentRegExp.test(input.trim())); | ||
} |
{ | ||
"name": "ava-tap-json", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "JSON TAP output formatter for AVA", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
5683