UNPKG
wunderline
Version:
latest (4.10.3)
4.10.3
4.10.2
4.10.1
4.10.0
4.9.0
4.8.0
4.7.2
4.7.0
4.6.1
4.6.0
4.5.0
4.4.4
4.4.3
4.4.2
4.4.1
4.4.0
4.3.1
4.3.0
4.2.0
4.1.8
4.1.7
4.1.6
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.2
4.0.1
4.0.0
3.5.0
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.1
3.1.0
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
Wunderlist for your command line!
wayneashleyberry.github.io/wunderline/
wayneashleyberry/wunderline
wunderline
/
test.js
16 lines
(13 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var
test =
require
(
"ava"
).
test
;
var
binCheck =
require
(
"bin-check"
); test.
cb
(
"check bin"
,
function
(
t
) { t.
plan
(
1
);
binCheck
(
"./wunderline.js"
).
then
(
works
=>
{
if
(works) { t.
pass
(); }
else
{ t.
fail
(); } t.
end
(); }); });