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
/
skip.js
12 lines
(9 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
test
from
'tape'
test
(
'a + b = ab'
,
t
=>
{ t.
same
(
'a'
+
'b'
,
'ab'
) t.
end
() })
test
(
'skipped'
, {
skip
:
true
},
t
=>
{ t.
same
(
'ab'
+
'c'
,
'abc'
) t.
end
() })