We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212245e commit e60f7e7Copy full SHA for e60f7e7
language-server/src/test/test-client.ts
@@ -312,6 +312,7 @@ export class TestClient<Configuration> {
312
private buildCompleted() {
313
return new Promise<void>((resolve) => {
314
this.client.onRequest(WorkDoneProgressCreateRequest.type, ({ token }) => {
315
+ console.log(token); // eslint-disable-line no-console
316
this.client.onProgress(WorkDoneProgress.type, token, ({ kind }) => {
317
if (kind === "end") {
318
resolve();
0 commit comments