Skip to content

Commit

Permalink
Skip serverless search start_elasticsearch and search_index_details s…
Browse files Browse the repository at this point in the history
…uites for MKI (#196982)

## Summary

This PR skips the serverless search test suites `start_elasticsearch`
and `search_index_details` in MKI runs.
See #196981
  • Loading branch information
pheyos authored Oct 19, 2024
1 parent b3fab03 commit 13aec54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 13aec54

Please sign in to comment.