From 17c6c896aeea353ce63130451f83e56227f77390 Mon Sep 17 00:00:00 2001 From: wthrajat Date: Mon, 1 Jul 2024 23:29:59 +0530 Subject: [PATCH] utimes debug Signed-off-by: wthrajat --- .../src/features/workspace-neovim.test.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/language-server/src/features/workspace-neovim.test.ts b/language-server/src/features/workspace-neovim.test.ts index 3e9a0cf..f093789 100644 --- a/language-server/src/features/workspace-neovim.test.ts +++ b/language-server/src/features/workspace-neovim.test.ts @@ -31,7 +31,7 @@ describe("Feature - workspace (neovim)", () => { capabilities: { workspace: { didChangeWatchedFiles: { - dynamicRegistration: false + dynamicRegistration: true } } }, @@ -45,7 +45,7 @@ describe("Feature - workspace (neovim)", () => { // Block for a while to allow InitializedNotification time to finish. // This is only needed for the node-based workspace watching used for neovim - await wait(1000); // Increased wait time for reliability on Windows + // await wait(1000); // Increased wait time for reliability on Windows }); afterAll(async () => { @@ -100,11 +100,11 @@ describe("Feature - workspace (neovim)", () => { }); }); -const wait = async (delay: number) => { - return new Promise((resolve) => { - setTimeout(resolve, delay); - }); -}; +// const wait = async (delay: number) => { +// return new Promise((resolve) => { +// setTimeout(resolve, delay); +// }); +// }; const touch = async (path: string) => { const time = new Date();