diff --git a/language-server/src/services/schemas-neovim.test.ts b/language-server/src/services/schemas-neovim.test.ts index b69597d..00df3be 100644 --- a/language-server/src/services/schemas-neovim.test.ts +++ b/language-server/src/services/schemas-neovim.test.ts @@ -3,6 +3,7 @@ import { TestClient } from "../test/test-client.ts"; import { PublishDiagnosticsNotification } from "vscode-languageserver"; import type { DocumentSettings } from "./configuration.js"; +import { wait } from "../test/test-utils.ts"; describe("Feature - workspace (neovim)", () => { @@ -24,6 +25,7 @@ describe("Feature - workspace (neovim)", () => { documentUriA = await client.writeDocument("./subjectA.schema.json", `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }`); documentUriB = await client.writeDocument("./subjectB.schema.json", `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }`); + await wait(1000); }); afterAll(async () => {