File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,14 @@ const $ = require('tinyspawn')
5
5
6
6
const constants = require ( './constants' )
7
7
8
- const args = ( flags = { } ) =>
9
- dargs ( flags , { useEquals : false } ) . filter ( Boolean )
8
+ const args = ( flags = { } ) => dargs ( flags , { useEquals : false } ) . filter ( Boolean )
10
9
11
10
const isJSON = ( str = '' ) => str . startsWith ( '{' )
12
11
13
12
const parse = ( { stdout, stderr, ...details } ) => {
14
- if ( stdout !== '' && stdout !== 'null' ) return isJSON ( stdout ) ? JSON . parse ( stdout ) : stdout
13
+ if ( stdout !== undefined && stdout !== '' && stdout !== 'null' ) {
14
+ return isJSON ( stdout ) ? JSON . parse ( stdout ) : stdout
15
+ }
15
16
throw Object . assign ( new Error ( stderr ) , { stderr, stdout } , details )
16
17
}
17
18
Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
+ const { rename } = require ( 'fs/promises' )
4
+ const path = require ( 'path' )
3
5
const test = require ( 'ava' )
4
6
5
7
const youtubedl = require ( '..' )
6
8
9
+ test . serial ( 'catch errors' , async t => {
10
+ await rename ( path . resolve ( 'bin/yt-dlp' ) , path . resolve ( 'bin/_yt-dlp' ) )
11
+ t . teardown ( ( ) =>
12
+ rename ( path . resolve ( 'bin/_yt-dlp' ) , path . resolve ( 'bin/yt-dlp' ) )
13
+ )
14
+ const error = await t . throwsAsync ( youtubedl ( '' ) , { instanceOf : Error } )
15
+ t . is ( error . errno , - 2 )
16
+ t . is ( error . code , 'ENOENT' )
17
+ } )
18
+
7
19
test ( 'no url' , async t => {
8
20
const error = await t . throwsAsync ( youtubedl ( '' ) , { instanceOf : Error } )
9
21
t . is ( error . exitCode , 2 )
You can’t perform that action at this time.
0 commit comments