mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:43:07 +00:00
files - disable flaky watch test on windows
This commit is contained in:
parent
ee9dafcf74
commit
ca2204bbc8
1 changed files with 4 additions and 0 deletions
|
@ -1382,6 +1382,10 @@ suite('Disk File Service', () => {
|
|||
});
|
||||
|
||||
test('watch - file - multiple writes', done => {
|
||||
if (isWindows) {
|
||||
return done(); // not happy
|
||||
}
|
||||
|
||||
const toWatch = URI.file(join(testDir, 'index-watch1.html'));
|
||||
writeFileSync(toWatch.fsPath, 'Init');
|
||||
|
||||
|
|
Loading…
Reference in a new issue