Skip to content

Commit

Permalink
Windows sucks
Browse files Browse the repository at this point in the history
  • Loading branch information
jdesrosiers committed Oct 19, 2024
1 parent 212245e commit 5129649
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions language-server/src/services/schemas-neovim.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ describe("Feature - workspace (neovim)", () => {
}
});

console.log("a"); // eslint-disable-line no-console
documentUriA = await client.writeDocument("./subjectA.schema.json", `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }`);
console.log("b"); // eslint-disable-line no-console
documentUriB = await client.writeDocument("./subjectB.schema.json", `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }`);
console.log("c"); // eslint-disable-line no-console
});

afterAll(async () => {
Expand All @@ -46,7 +49,9 @@ describe("Feature - workspace (neovim)", () => {
schemaUris.push(params.uri);
});

console.log("d"); // eslint-disable-line no-console
await client.writeDocument("./subjectB.schema.json", `{ "$schema": "https://json-schema.org/draft/2020-12/schema" }`);
console.log("e"); // eslint-disable-line no-console

expect(schemaUris).to.eql([documentUriA, documentUriB]);
});
Expand Down

0 comments on commit 5129649

Please sign in to comment.