UNPKG
tap-in
Version:
latest (3.2.1)
3.2.1
3.2.0
3.1.0
turn tap test output into JSON
github.com/spencermountain/tap-in
spencermountain/tap-in
tap-in
/
src
/
fns.js
13 lines
(10 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
isFailAssertionLine =
function
(
line
) {
return
line.
indexOf
(
'not ok'
) ===
0
}
const
isErrorOutputEnd =
function
(
line
) {
return
line ===
' ...'
}
module
.
exports
= { isFailAssertionLine, isErrorOutputEnd, }