From 781074f36cf296897a6f1b7c052f3f769e763406 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 17 Apr 2019 14:07:14 -0700 Subject: [PATCH] Disable flaky DiskFileService test --- .../files/test/node/diskFileService.test.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/vs/workbench/services/files/test/node/diskFileService.test.ts b/src/vs/workbench/services/files/test/node/diskFileService.test.ts index 29822c57a0c..ff11942385b 100644 --- a/src/vs/workbench/services/files/test/node/diskFileService.test.ts +++ b/src/vs/workbench/services/files/test/node/diskFileService.test.ts @@ -1480,16 +1480,16 @@ suite('Disk File Service', () => { setTimeout(() => unlinkSync(file.fsPath), 50); }); - test('watch - folder (non recursive) - add folder', done => { - const watchDir = URI.file(join(testDir, 'watch6')); - mkdirSync(watchDir.fsPath); + // test('watch - folder (non recursive) - add folder', done => { + // const watchDir = URI.file(join(testDir, 'watch6')); + // mkdirSync(watchDir.fsPath); - const folder = URI.file(join(watchDir.fsPath, 'folder')); + // const folder = URI.file(join(watchDir.fsPath, 'folder')); - assertWatch(watchDir, [[FileChangeType.ADDED, folder]], done); + // assertWatch(watchDir, [[FileChangeType.ADDED, folder]], done); - setTimeout(() => mkdirSync(folder.fsPath), 50); - }); + // setTimeout(() => mkdirSync(folder.fsPath), 50); + // }); test('watch - folder (non recursive) - delete folder', done => { const watchDir = URI.file(join(testDir, 'watch7')); -- GitLab