UNPKG
tap-on
Version:
latest (1.0.0)
1.0.0
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0
A nicer way to handle tap output
github.com/dhershman1/tap-on
dhershman1/tap-on
tap-on
/
tests
/
error.js
19 lines
(14 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
test
from
'tape'
/* eslint-disable */
test
(
'good test'
,
t
=>
{ t.
ok
(
true
) t.
end
() })
test
(
'good test 2'
,
t
=>
{ t.
ok
(
1
) t.
end
() })
test
(
'bad test'
,
t
=>
{ t.
ok
(
undefined
.
length
) t.
end
() })