Skip to content

Commit

Permalink
utimes debug
Browse files Browse the repository at this point in the history
Signed-off-by: wthrajat <[email protected]>
  • Loading branch information
wthrajat committed Jul 1, 2024
1 parent f86a5f8 commit 17c6c89
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions language-server/src/features/workspace-neovim.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("Feature - workspace (neovim)", () => {
capabilities: {
workspace: {
didChangeWatchedFiles: {
dynamicRegistration: false
dynamicRegistration: true
}
}
},
Expand All @@ -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 () => {
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 17c6c89

Please sign in to comment.