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() { public showsErrorCallout() {
return this.testSubjects.existOrFail('discoverErrorCalloutTitle'); this.retry.try(async () => {
await this.testSubjects.existOrFail('discoverErrorCalloutTitle');
});
} }
public getDiscoverErrorMessage() { public getDiscoverErrorMessage() {

View file

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