From 1a727649d6ada1bd80cf4656f953184794e48157 Mon Sep 17 00:00:00 2001 From: Robert Oskamp Date: Sat, 24 Aug 2024 15:58:29 +0200 Subject: [PATCH] Skip failing serverless discover and visualize tests for MKI (#191239) ## Summary This PR skips the failing serverless discover and visualize tests for MKI runs. For more details, see the corresponding issues #191237 and #191238. --- .../test_suites/common/context/_discover_navigation.ts | 5 ++++- .../visualizations/group2/open_in_lens/agg_based/goal.ts | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/x-pack/test_serverless/functional/test_suites/common/context/_discover_navigation.ts b/x-pack/test_serverless/functional/test_suites/common/context/_discover_navigation.ts index d53759ddc4e29..dccd6723507d5 100644 --- a/x-pack/test_serverless/functional/test_suites/common/context/_discover_navigation.ts +++ b/x-pack/test_serverless/functional/test_suites/common/context/_discover_navigation.ts @@ -35,7 +35,10 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const browser = getService('browser'); const kibanaServer = getService('kibanaServer'); - describe('context link in discover', () => { + describe('context link in discover', function () { + // flaky on MKI, see https://github.com/elastic/kibana/issues/191237 + this.tags(['failsOnMKI']); + before(async () => { await PageObjects.timePicker.setDefaultAbsoluteRangeViaUiSettings(); await kibanaServer.uiSettings.update({ diff --git a/x-pack/test_serverless/functional/test_suites/common/visualizations/group2/open_in_lens/agg_based/goal.ts b/x-pack/test_serverless/functional/test_suites/common/visualizations/group2/open_in_lens/agg_based/goal.ts index 97ace2684cb85..15da3d48d9037 100644 --- a/x-pack/test_serverless/functional/test_suites/common/visualizations/group2/open_in_lens/agg_based/goal.ts +++ b/x-pack/test_serverless/functional/test_suites/common/visualizations/group2/open_in_lens/agg_based/goal.ts @@ -21,6 +21,9 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { const kibanaServer = getService('kibanaServer'); describe('Goal', function describeIndexTests() { + // fails on MKI, see https://github.com/elastic/kibana/issues/191238 + this.tags(['failsOnMKI']); + const fixture = 'x-pack/test_serverless/functional/fixtures/kbn_archiver/lens/open_in_lens/agg_based/goal.json';