mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Discover] Unskip custom time range test (#176132)
- Closes https://github.com/elastic/kibana/issues/104578 ## Summary 50x https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/5021 50x https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/5062 50x https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/5076 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
This commit is contained in:
parent
6f340bccc1
commit
9999f3674b
2 changed files with 5 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue