Skip to content

Commit 5129649

Browse files
committed
Windows sucks
1 parent 212245e commit 5129649

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ describe("Feature - workspace (neovim)", () => {
2222
}
2323
});
2424

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

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

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

5156
expect(schemaUris).to.eql([documentUriA, documentUriB]);
5257
});

0 commit comments

Comments
 (0)