Skip to content

Commit a7c0299

Browse files
committed
remove arrow functions
1 parent 8f7adfe commit a7c0299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/test/shared/fs/fs.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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')

0 commit comments

Comments
 (0)