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
/
passAndFail.js
16 lines
(11 loc)
•
193 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Modules */
import
test
from
'tape'
/* Tests */
test
(
'1 === 2'
,
function
(
t
) { t.
plan
(
1
) t.
equal
(
1
,
2
) })
test
(
'1 === 1'
,
function
(
t
) { t.
plan
(
1
) t.
equal
(
1
,
1
) })