mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
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:
parent
b3fab03e27
commit
13aec54808
2 changed files with 7 additions and 1 deletions
|
@ -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');
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue