mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
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:
parent
6690bcdf9c
commit
1a727649d6
2 changed files with 7 additions and 1 deletions
|
@ -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({
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue