mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
missing change
This commit is contained in:
@@ -24,15 +24,6 @@ suite('window namespace tests', () => {
|
||||
});
|
||||
});
|
||||
|
||||
test('editor, opened via fileName', () => {
|
||||
const fileName = join(workspace.rootPath || '', './far.js');
|
||||
return window.showTextDocument(fileName).then((editor) => {
|
||||
const active = window.activeTextEditor;
|
||||
assert.ok(active);
|
||||
assert.ok(pathEquals(active!.document.uri.fsPath, fileName));
|
||||
});
|
||||
});
|
||||
|
||||
test('editor, opened via resource', () => {
|
||||
const uri = Uri.file(join(workspace.rootPath || '', './far.js'));
|
||||
return window.showTextDocument(uri).then((editor) => {
|
||||
|
||||
Reference in New Issue
Block a user