Skip to content

Commit

Permalink
[test/functional/context] include missing await (#100422)
Browse files Browse the repository at this point in the history
Co-authored-by: spalger <[email protected]>
Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
3 people authored May 25, 2021
1 parent aa2f5b5 commit 7bd46ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/apps/context/_discover_navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default function ({ getService, getPageObjects }) {
const alert = await browser.getAlert();
await alert?.accept();
expect(await browser.getCurrentUrl()).to.contain('#/doc');
retry.waitFor('doc view being rendered', async () => {
await retry.waitFor('doc view being rendered', async () => {
return await PageObjects.discover.isShowingDocViewer();
});
});
Expand Down

0 comments on commit 7bd46ec

Please sign in to comment.