File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/core/src/test/shared/fs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ describe.only('FileSystem', function () {
404404 } )
405405 } )
406406
407- describe . only ( 'rename()' , async ( ) => {
407+ describe . only ( 'rename()' , async function ( ) {
408408 it ( 'renames a file' , async ( ) => {
409409 const oldPath = await testFolder . write ( 'oldFile.txt' , 'hello world' )
410410 const newPath = path . join ( path . dirname ( oldPath ) , 'newFile.txt' )
@@ -459,7 +459,7 @@ describe.only('FileSystem', function () {
459459 }
460460 } )
461461
462- for ( const _ of Array . of ( { length : 1000 } , ( i : any ) => i ) ) {
462+ for ( const _ of Array . of ( { length : 5000 } , ( i : any ) => i ) ) {
463463 it ( 'source file does not exist at first, but eventually appears' , async function ( ) {
464464 const oldPath = testFolder . pathFrom ( 'oldFile.txt' )
465465 const newPath = testFolder . pathFrom ( 'newFile.txt' )
You can’t perform that action at this time.
0 commit comments