mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[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:
parent
cf6ef5c2ef
commit
f019b531a0
2 changed files with 4 additions and 2 deletions
|
@ -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');
|
||||
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue