@@ -24,7 +24,7 @@ var path = require( 'path' );
2424var tape = require ( 'tape' ) ;
2525var proxyquire = require ( 'proxyquire' ) ;
2626var noop = require ( '@stdlib/utils/noop' ) ;
27- var parallel = require ( './../lib/parallel .js' ) ;
27+ var parallel = require ( './../lib/main .js' ) ;
2828
2929
3030// FIXTURES //
@@ -58,7 +58,7 @@ tape( 'the function throws an error if the first argument is not a string array'
5858 5 ,
5959 NaN ,
6060 true ,
61- undefined ,
61+ void 0 ,
6262 null ,
6363 { } ,
6464 function noop ( ) { } ,
@@ -87,7 +87,7 @@ tape( 'the function throws an error if the first argument is not a string array
8787 5 ,
8888 NaN ,
8989 true ,
90- undefined ,
90+ void 0 ,
9191 null ,
9292 { } ,
9393 function noop ( ) { } ,
@@ -116,7 +116,7 @@ tape( 'the function throws an error if the callback argument is not a function',
116116 5 ,
117117 NaN ,
118118 true ,
119- undefined ,
119+ void 0 ,
120120 null ,
121121 { } ,
122122 [ ]
@@ -143,7 +143,7 @@ tape( 'the function throws an error if the callback argument is not a function (
143143 5 ,
144144 NaN ,
145145 true ,
146- undefined ,
146+ void 0 ,
147147 null ,
148148 { } ,
149149 [ ]
@@ -170,7 +170,7 @@ tape( 'the function throws an error if the options argument is not an object', f
170170 5 ,
171171 NaN ,
172172 true ,
173- undefined ,
173+ void 0 ,
174174 null ,
175175 [ ] ,
176176 function noop ( ) { }
@@ -198,7 +198,7 @@ tape( 'the function throws an error if provided an invalid option', function tes
198198 3.14 ,
199199 NaN ,
200200 true ,
201- undefined ,
201+ void 0 ,
202202 null ,
203203 [ ] ,
204204 { } ,
@@ -220,7 +220,7 @@ tape( 'the function throws an error if provided an invalid option', function tes
220220} ) ;
221221
222222tape ( 'the function calls a provided callback after executing all scripts' , function test ( t ) {
223- var parallel = proxyquire ( './../lib/parallel .js' , {
223+ var parallel = proxyquire ( './../lib/main .js' , {
224224 './node' : exec
225225 } ) ;
226226
@@ -241,7 +241,7 @@ tape( 'the function calls a provided callback after executing all scripts', func
241241} ) ;
242242
243243tape ( 'the function returns an error to the provided callback if an error is encountered during script execution' , function test ( t ) {
244- var parallel = proxyquire ( './../lib/parallel .js' , {
244+ var parallel = proxyquire ( './../lib/main .js' , {
245245 './node' : exec
246246 } ) ;
247247
@@ -270,7 +270,7 @@ tape( 'if the concurrency is greater than the number of files, the function sets
270270 opts = {
271271 'concurrency' : f . length + 10
272272 } ;
273- parallel = proxyquire ( './../lib/parallel .js' , {
273+ parallel = proxyquire ( './../lib/main .js' , {
274274 './node' : exec
275275 } ) ;
276276
@@ -292,7 +292,7 @@ tape( 'if the number of workers is greater than the concurrency, the function se
292292 'workers' : 10 ,
293293 'concurrency' : 2
294294 } ;
295- parallel = proxyquire ( './../lib/parallel .js' , {
295+ parallel = proxyquire ( './../lib/main .js' , {
296296 './node' : exec
297297 } ) ;
298298
0 commit comments