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.
This commit is contained in:
Robert Oskamp 2024-08-24 15:58:29 +02:00 committed by GitHub
parent 6690bcdf9c
commit 1a727649d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -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({

View file

@ -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';