fix smoketest: find all references

This commit is contained in:
Joao Moreno 2018-11-16 10:35:00 +01:00
parent c385dfe391
commit 09bd9f7dee

View file

@ -22,7 +22,7 @@ export class Editor {
async findReferences(filename: string, term: string, line: number): Promise<References> {
await this.clickOnTerm(filename, term, line);
await this.commands.runCommand('Find All References');
await this.commands.runCommand('Peek References');
const references = new References(this.code);
await references.waitUntilOpen();
return references;