Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 committed Jul 21, 2020
1 parent 77ffa11 commit 1e036f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/functional/apps/graph/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,15 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {

await PageObjects.graph.isolateEdge('test', '/test/wp-admin/');

await this.stopLayout();
await PageObjects.graph.stopLayout();
await PageObjects.common.sleep(1000);
const testTestWpAdminBlogEdge = edges.find(
({ sourceNode, targetNode }) =>
targetNode.label === '/test/wp-admin/' && sourceNode.label === 'test'
)!;
await testTestWpAdminBlogEdge.element.click();
await PageObjects.common.sleep(1000);
await this.startLayout();
await PageObjects.graph.startLayout();

const vennTerm1 = await PageObjects.graph.getVennTerm1();
log.debug('vennTerm1 = ' + vennTerm1);
Expand Down

0 comments on commit 1e036f2

Please sign in to comment.