Drew Tate 2024-05-29 10:18:19 -06:00 committed by GitHub
parent 12f35c9a31
commit 58f1c67a50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View file

@ -509,7 +509,9 @@ export class DiscoverPageObject extends FtrService {
}
public showsErrorCallout() {
return this.testSubjects.existOrFail('discoverErrorCalloutTitle');
this.retry.try(async () => {
await this.testSubjects.existOrFail('discoverErrorCalloutTitle');
});
}
public getDiscoverErrorMessage() {

View file

@ -35,8 +35,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
defaultIndex: 'logstash-*',
};
// Failing: See https://github.com/elastic/kibana/issues/183493
describe.skip('discover esql view', async function () {
describe('discover esql view', async function () {
before(async () => {
await kibanaServer.savedObjects.cleanStandardList();
log.debug('load kibana index with default index pattern');