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 72a74e1Copy full SHA for 72a74e1
language-server/src/test/test-client.ts
@@ -239,13 +239,13 @@ export class TestClient<Configuration> {
239
}
240
241
async writeDocument(uri: string, text: string) {
242
+ const buildCompleted = this.buildCompleted();
243
+
244
const fullUri = resolveIri(uri, await this.workspaceFolder);
245
const exists = await access(fullUri).then(() => true).catch(() => false);
246
247
await writeFile(fileURLToPath(fullUri), text, "utf-8");
248
- const buildCompleted = this.buildCompleted();
-
249
if (this.watchEnabled) {
250
await this.client.sendNotification(DidChangeWatchedFilesNotification.type, {
251
changes: [{
0 commit comments