From a2a7f4254000f53d764b49c760a2ffbf93f73041 Mon Sep 17 00:00:00 2001 From: Julia Rechkunova Date: Thu, 5 Oct 2023 09:38:09 +0200 Subject: [PATCH] [Discover] Fix flaky chart interval test (#167977) - Closes https://github.com/elastic/kibana/issues/146223 100x https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3317 --- test/functional/apps/discover/group1/_discover.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/apps/discover/group1/_discover.ts b/test/functional/apps/discover/group1/_discover.ts index 2933dd02f1525..8a72fd9cc5a58 100644 --- a/test/functional/apps/discover/group1/_discover.ts +++ b/test/functional/apps/discover/group1/_discover.ts @@ -111,10 +111,10 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { ); }); - // FLAKY: https://github.com/elastic/kibana/issues/146223 - it.skip('should show correct initial chart interval of Auto', async function () { + it('should show correct initial chart interval of Auto', async function () { await PageObjects.timePicker.setDefaultAbsoluteRange(); await PageObjects.discover.waitUntilSearchingHasFinished(); + await testSubjects.click('unifiedHistogramQueryHits'); // to cancel out tooltips const actualInterval = await PageObjects.discover.getChartInterval(); const expectedInterval = 'Auto';