UNPKG
smule
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A complete media downloader for smule.com
github.com/CodeDotJS/smule
CodeDotJS/smule
smule
/
test.js
14 lines
(10 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
childProcess
from
'child_process'
;
import
test
from
'ava'
; test.
cb
(
t
=>
{
const
cp = childProcess.
spawn
(
'./cli.js'
, {
stdio
:
'inherit'
}); cp.
on
(
'error'
, t.
ifError
); cp.
on
(
'close'
,
code
=>
{ t.
is
(code,
1
); t.
end
(); }); });