Disable flaky spec on Windows until we can identify a proper fix

This commit is contained in:
Jason Rudolph 2019-06-13 11:52:47 -04:00
parent d03d2772b5
commit a0742f8e9d
No known key found for this signature in database
GPG Key ID: B760F197E561DF15

View File

@ -1084,6 +1084,8 @@ describe('Project', () => {
};
it('reports filesystem changes within project paths', async () => {
if (process.platform === 'win32') return; // Flaky results on Windows: https://github.com/atom/atom/issues/19507
jasmine.useRealClock();
const dirOne = temp.mkdirSync('atom-spec-project-one');
const fileOne = path.join(dirOne, 'file-one.txt');