We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34e8b5 commit 518707cCopy full SHA for 518707c
test/suite/extension.test.ts
@@ -37,7 +37,7 @@ async function existsWorkspaceFile(fileRelativePath: string) {
37
return new Promise<vscode.Uri>((resolve) => {
38
// tslint:disable: no-console
39
console.log(`Creating file system watcher for ${fileRelativePath}`);
40
- const watcher = vscode.workspace.createFileSystemWatcher(`**/${fileRelativePath}`).onDidCreate((uri) => {
+ const watcher = vscode.workspace.createFileSystemWatcher(`**${fileRelativePath}`).onDidCreate((uri) => {
41
console.log(`Created: ${uri}`);
42
resolve(uri);
43
});
0 commit comments