chore(vscode): update to 1.56.0
This commit is contained in:
@ -121,7 +121,7 @@ class AbcEditor extends Disposable {
|
||||
});
|
||||
}
|
||||
|
||||
public dispose() {
|
||||
public override dispose() {
|
||||
if (this.isDisposed) {
|
||||
return;
|
||||
}
|
||||
|
@ -264,7 +264,8 @@ suite('CustomEditor tests', () => {
|
||||
await vscode.commands.executeCommand(commands.open, testDocument, { preview: false });
|
||||
const { content } = await listener.nextResponse();
|
||||
assert.strictEqual(content, startingContent.toString());
|
||||
assert.ok(!vscode.window.activeTextEditor);
|
||||
const activeEditor = vscode.window.activeTextEditor;
|
||||
assert.ok(!activeEditor);
|
||||
}
|
||||
|
||||
// Switch to non-default editor
|
||||
|
@ -10,8 +10,8 @@ const suite = 'Custom Editor Tests';
|
||||
|
||||
const options: any = {
|
||||
ui: 'tdd',
|
||||
color: (!process.env.BUILD_ARTIFACTSTAGINGDIRECTORY && process.platform !== 'win32'),
|
||||
timeout: 6000000
|
||||
color: true,
|
||||
timeout: 60000
|
||||
};
|
||||
|
||||
if (process.env.BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
||||
|
Reference in New Issue
Block a user