Skip to content

Commit

Permalink
[Discover] Unskip edit data view test (elastic#176134)
Browse files Browse the repository at this point in the history
- Closes elastic#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
  • Loading branch information
jughosta authored and fkanout committed Mar 4, 2024
1 parent c9d1d48 commit 879de87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down
3 changes: 3 additions & 0 deletions test/functional/page_objects/settings_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 879de87

Please sign in to comment.