Julia Rechkunova 2024-02-07 18:57:50 +01:00 committed by GitHub
parent 6f340bccc1
commit 9999f3674b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -64,6 +64,10 @@ export function DashboardCustomizePanelProvider({ getService, getPageObject }: F
);
}
});
await retry.waitFor('superDatePickerToggleQuickMenuButton to be present', async () => {
return Boolean(await this.findDatePickerQuickMenuButton());
});
}
public async disableCustomTimeRange() {

View file

@ -45,8 +45,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.common.unsetTime();
});
// FLAKY: https://github.com/elastic/kibana/issues/104578
describe.skip('Customize time range', () => {
describe('Customize time range', () => {
it('should be possible to customize time range for saved searches on dashboards', async () => {
await PageObjects.dashboard.navigateToApp();
await PageObjects.dashboard.clickNewDashboard();