Skip to content

Commit

Permalink
[Discover] Fix flaky chart interval test (elastic#167977)
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta authored Oct 5, 2023
1 parent 0b4fe3f commit a2a7f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/apps/discover/group1/_discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit a2a7f42

Please sign in to comment.