Skip to content

Commit

Permalink
tests - only skip watcher suite in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Dec 21, 2021
1 parent 53c50c4 commit 7b9e5c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { timeout } from 'vs/base/common/async';
import { dirname, join, sep } from 'vs/base/common/path';
import { isLinux, isMacintosh, isWindows } from 'vs/base/common/platform';
import { Promises, RimRafMode } from 'vs/base/node/pfs';
import { getPathFromAmdModule, getRandomTestPath } from 'vs/base/test/node/testUtils';
import { flakySuite, getPathFromAmdModule, getRandomTestPath } from 'vs/base/test/node/testUtils';
import { FileChangeType } from 'vs/platform/files/common/files';
import { IParcelWatcherInstance, ParcelWatcher } from 'vs/platform/files/node/watcher/parcel/parcelWatcher';
import { IWatchRequest } from 'vs/platform/files/common/watcher';
Expand All @@ -20,7 +20,7 @@ import { IWatchRequest } from 'vs/platform/files/common/watcher';
// mocha but generally). as such they will run only on demand
// whenever we update the watcher library.

suite.skip('Recursive Watcher (parcel)', () => {
((process.env['BUILD_SOURCEVERSION'] || process.env['CI']) ? suite.skip : flakySuite)('Recursive Watcher (parcel)', () => {

class TestParcelWatcher extends ParcelWatcher {

Expand Down

0 comments on commit 7b9e5c3

Please sign in to comment.