Skip to content

Commit 0342467

Browse files
committed
Windows sucks
1 parent 212245e commit 0342467

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
@@ -22,8 +22,10 @@ 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" }`);
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)