Skip to content

Commit 518707c

Browse files
committed
Tweak glob
1 parent b34e8b5 commit 518707c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/suite/extension.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function existsWorkspaceFile(fileRelativePath: string) {
3737
return new Promise<vscode.Uri>((resolve) => {
3838
// tslint:disable: no-console
3939
console.log(`Creating file system watcher for ${fileRelativePath}`);
40-
const watcher = vscode.workspace.createFileSystemWatcher(`**/${fileRelativePath}`).onDidCreate((uri) => {
40+
const watcher = vscode.workspace.createFileSystemWatcher(`**${fileRelativePath}`).onDidCreate((uri) => {
4141
console.log(`Created: ${uri}`);
4242
resolve(uri);
4343
});

0 commit comments

Comments
 (0)