Skip to content

Commit 43d8da5

Browse files
committed
try removing only
1 parent 6307fe6 commit 43d8da5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { driveLetterRegex } from '../../../shared/utilities/pathUtils'
2323
import { IdeFileSystem } from '../../../shared/telemetry/telemetry.gen'
2424
import { 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

Comments
 (0)