[Discover] Unskip edit data view test (#176134)

- Closes https://github.com/elastic/kibana/issues/174066

## Summary

50x
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/5022


### 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
- [x] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
This commit is contained in:
Julia Rechkunova 2024-02-06 09:07:34 +01:00 committed by GitHub
parent cf6ef5c2ef
commit f019b531a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -149,8 +149,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
});
// FLAKY: https://github.com/elastic/kibana/issues/174066
describe.skip('edit index pattern', () => {
describe('edit index pattern', () => {
it('on edit click', async () => {
await PageObjects.settings.editIndexPattern('logstash-*', '@timestamp', 'Logstash Star');

View file

@ -238,6 +238,9 @@ export class SettingsPageObject extends FtrService {
async clickEditIndexButton() {
await this.testSubjects.click('editIndexPatternButton');
await this.retry.waitFor('flyout', async () => {
return await this.testSubjects.exists('indexPatternEditorFlyout');
});
}
async clickDeletePattern() {