Skip to content

Commit

Permalink
Skip failing serverless discover and visualize tests for MKI (elastic…
Browse files Browse the repository at this point in the history
…#191239)

## Summary

This PR skips the failing serverless discover and visualize tests for
MKI runs.

For more details, see the corresponding issues elastic#191237 and elastic#191238.
  • Loading branch information
pheyos authored Aug 24, 2024
1 parent 6690bcd commit 1a72764
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 @@ -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({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit 1a72764

Please sign in to comment.