Skip to content

Commit 17c6c89

Browse files
committed
utimes debug
Signed-off-by: wthrajat <rajatkhanduri290102@gmail.com>
1 parent f86a5f8 commit 17c6c89

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

language-server/src/features/workspace-neovim.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe("Feature - workspace (neovim)", () => {
3131
capabilities: {
3232
workspace: {
3333
didChangeWatchedFiles: {
34-
dynamicRegistration: false
34+
dynamicRegistration: true
3535
}
3636
}
3737
},
@@ -45,7 +45,7 @@ describe("Feature - workspace (neovim)", () => {
4545

4646
// Block for a while to allow InitializedNotification time to finish.
4747
// This is only needed for the node-based workspace watching used for neovim
48-
await wait(1000); // Increased wait time for reliability on Windows
48+
// await wait(1000); // Increased wait time for reliability on Windows
4949
});
5050

5151
afterAll(async () => {
@@ -100,11 +100,11 @@ describe("Feature - workspace (neovim)", () => {
100100
});
101101
});
102102

103-
const wait = async (delay: number) => {
104-
return new Promise((resolve) => {
105-
setTimeout(resolve, delay);
106-
});
107-
};
103+
// const wait = async (delay: number) => {
104+
// return new Promise((resolve) => {
105+
// setTimeout(resolve, delay);
106+
// });
107+
// };
108108

109109
const touch = async (path: string) => {
110110
const time = new Date();

0 commit comments

Comments
 (0)