Skip to content

Commit

Permalink
[Functional] Unskip vega tests and fix flakiness (#76600) (#76862)
Browse files Browse the repository at this point in the history
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
stratoula and elasticmachine authored Sep 7, 2020
1 parent 32c2437 commit df39556
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test/functional/apps/visualize/_vega_chart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const retry = getService('retry');
const browser = getService('browser');

// FLAKY: https://github.com/elastic/kibana/issues/75699
describe.skip('vega chart in visualize app', () => {
describe('vega chart in visualize app', () => {
before(async () => {
log.debug('navigateToApp visualize');
await PageObjects.visualize.navigateToNewVisualization();
Expand Down
3 changes: 2 additions & 1 deletion test/functional/page_objects/vega_chart_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ export function VegaChartPageProvider({
const aceGutter = await this.getAceGutterContainer();

await aceGutter.doubleClick();
await browser.pressKeys(Key.LEFT);
await browser.pressKeys(Key.RIGHT);
await browser.pressKeys(Key.LEFT);
await browser.pressKeys(Key.LEFT);
await browser.pressKeys(text);
}

Expand Down

0 comments on commit df39556

Please sign in to comment.