mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
config-editing, api-test use strictNull-checks, #6907
This commit is contained in:
@@ -62,7 +62,7 @@ export function cleanUp(): Thenable<any> {
|
||||
}
|
||||
});
|
||||
|
||||
vscode.commands.executeCommand('workbench.action.closeAllEditors').then(null, reject);
|
||||
vscode.commands.executeCommand('workbench.action.closeAllEditors').then(undefined, reject);
|
||||
|
||||
}).then(() => {
|
||||
assert.equal(vscode.window.visibleTextEditors.length, 0);
|
||||
@@ -76,4 +76,4 @@ export function cleanUp(): Thenable<any> {
|
||||
|
||||
// assert.equal(vscode.workspace.textDocuments.length, 0);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user