@@ -309,6 +309,8 @@ test.group('Configure command | run', (group) => {
309
309
context . fs . basePath = BASE_PATH
310
310
} )
311
311
312
+ group . tap ( ( t ) => t . disableTimeout ( ) )
313
+
312
314
test ( 'throw error when unable to import package' , async ( { assert, fs } ) => {
313
315
const ace = await new AceFactory ( ) . make ( fs . baseUrl , {
314
316
importer : ( filePath ) => {
@@ -469,7 +471,7 @@ test.group('Configure command | run', (group) => {
469
471
message : '[ cyan(wait) ] installing dependencies using pnpm . ' ,
470
472
stream : 'stdout' ,
471
473
} )
472
- } ) . timeout ( 5000 )
474
+ } )
473
475
474
476
test ( 'install packages using npm when package-lock file exists' , async ( { assert, fs } ) => {
475
477
const ace = await new AceFactory ( ) . make ( fs . baseUrl , {
@@ -506,7 +508,7 @@ test.group('Configure command | run', (group) => {
506
508
message : '[ cyan(wait) ] installing dependencies using npm . ' ,
507
509
stream : 'stdout' ,
508
510
} )
509
- } ) . timeout ( 5000 )
511
+ } )
510
512
511
513
test ( 'display error when installing packages' , async ( { assert, fs } ) => {
512
514
const ace = await new AceFactory ( ) . make ( fs . baseUrl , {
@@ -548,5 +550,5 @@ test.group('Configure command | run', (group) => {
548
550
lastLog . message ,
549
551
'[ red(error) ] Command failed with exit code 1: npm install -D [email protected] '
550
552
)
551
- } ) . timeout ( 5000 )
553
+ } )
552
554
} )
0 commit comments