missing change

This commit is contained in:
Johannes Rieken
2017-07-24 13:00:21 +02:00
parent 57d7d9bff5
commit 5731f0d011

View File

@@ -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) => {