Skip serverless search start_elasticsearch and search_index_details suites for MKI (#196982)

## Summary

This PR skips the serverless search test suites `start_elasticsearch`
and `search_index_details` in MKI runs.
See #196981
This commit is contained in:
Robert Oskamp 2024-10-19 23:58:34 +02:00 committed by GitHub
parent b3fab03e27
commit 13aec54808
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -27,6 +27,9 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
};
describe('Elasticsearch Start [Onboarding Empty State]', function () {
// fails on MKI, see https://github.com/elastic/kibana/issues/196981
this.tags(['failsOnMKI']);
describe('developer', function () {
before(async () => {
await pageObjects.svlCommonPage.loginWithRole('developer');

View file

@ -24,7 +24,10 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const esDeleteAllIndices = getService('esDeleteAllIndices');
const indexName = 'test-my-index';
describe('Search index detail page', () => {
describe('Search index detail page', function () {
// fails on MKI, see https://github.com/elastic/kibana/issues/196981
this.tags(['failsOnMKI']);
before(async () => {
await pageObjects.svlCommonPage.loginWithRole('developer');
await pageObjects.svlApiKeys.deleteAPIKeys();