Skip to content

Commit 58a2f28

Browse files
committed
Windows sucks
1 parent 212245e commit 58a2f28

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

language-server/src/services/schemas-neovim.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ describe("Feature - workspace (neovim)", () => {
2323
});
2424

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

2931
afterAll(async () => {
@@ -46,7 +48,9 @@ describe("Feature - workspace (neovim)", () => {
4648
schemaUris.push(params.uri);
4749
});
4850

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

5155
expect(schemaUris).to.eql([documentUriA, documentUriB]);
5256
});

0 commit comments

Comments
 (0)