Update to use TS 4.1 for building VS Code

This commit is contained in:
Matt Bierner
2020-09-16 11:48:21 -07:00
parent d1b49cd8b9
commit 50cc1d0e97
22 changed files with 35 additions and 35 deletions

View File

@@ -536,7 +536,7 @@ suite('vscode API - workspace', () => {
assert.equal(callCount, 1);
assert.equal(doc.getText(), 'call0');
return new Promise(resolve => {
return new Promise<void>(resolve => {
let subscription = vscode.workspace.onDidChangeTextDocument(event => {
assert.ok(event.document === doc);