mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 02:48:30 -05:00
* Merge from vscode e388c734f30757875976c7e326d6cfeee77710de * fix yarn lcoks * remove small issue
32 lines
1.4 KiB
TypeScript
32 lines
1.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import * as assert from 'assert';
|
|
import { ExtHostFileSystemEventService } from 'vs/workbench/api/node/extHostFileSystemEventService';
|
|
import { IMainContext } from 'vs/workbench/api/common/extHost.protocol';
|
|
|
|
suite('ExtHostFileSystemEventService', () => {
|
|
|
|
|
|
test('FileSystemWatcher ignore events properties are reversed #26851', function () {
|
|
|
|
const protocol: IMainContext = {
|
|
getProxy: () => { return undefined!; },
|
|
set: undefined!,
|
|
assertRegistered: undefined!
|
|
};
|
|
|
|
const watcher1 = new ExtHostFileSystemEventService(protocol, undefined!).createFileSystemWatcher('**/somethingInteresting', false, false, false);
|
|
assert.equal(watcher1.ignoreChangeEvents, false);
|
|
assert.equal(watcher1.ignoreCreateEvents, false);
|
|
assert.equal(watcher1.ignoreDeleteEvents, false);
|
|
|
|
const watcher2 = new ExtHostFileSystemEventService(protocol, undefined!).createFileSystemWatcher('**/somethingBoring', true, true, true);
|
|
assert.equal(watcher2.ignoreChangeEvents, true);
|
|
assert.equal(watcher2.ignoreCreateEvents, true);
|
|
assert.equal(watcher2.ignoreDeleteEvents, true);
|
|
});
|
|
|
|
});
|