@@ -23,7 +23,7 @@ import { driveLetterRegex } from '../../../shared/utilities/pathUtils'
2323import { IdeFileSystem } from '../../../shared/telemetry/telemetry.gen'
2424import { TestFolder } from '../../testUtil'
2525
26- describe . only ( 'FileSystem' , function ( ) {
26+ describe ( 'FileSystem' , function ( ) {
2727 let sandbox : Sinon . SinonSandbox
2828 let testFolder : TestFolder
2929
@@ -404,7 +404,7 @@ describe.only('FileSystem', function () {
404404 } )
405405 } )
406406
407- describe . only ( 'rename()' , async function ( ) {
407+ describe ( '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 : 10000 } , ( i : any ) => i ) ) {
462+ for ( const _ of Array . of ( { length : 1000 } , ( 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' )
0 commit comments