skip flaky suite (#173681)

This commit is contained in:
Tiago Costa 2023-12-19 18:48:09 +00:00
parent e9fafcd0aa
commit c5324eafad
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -50,7 +50,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
.delete(`${EXCEPTION_LIST_URL}?list_id=${listId}&namespace_type=agnostic`)
.set('kbn-xsrf', 'true');
};
// Several flaky tests from this file in serverless, hence @skipInServerless
// - https://github.com/elastic/kibana/issues?q=is%3Aissue+is%3Aopen+X-pack+endpoint+integrations++artifact+entries+list
// https://github.com/elastic/kibana/issues/171475
@ -62,8 +62,10 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
// https://github.com/elastic/kibana/issues/171489
// https://github.com/elastic/kibana/issues/171491
// https://github.com/elastic/kibana/issues/171492
describe('For each artifact list under management', function () {
targetTags(this, ['@ess', '@serverless', '@skipInServerless']);
//
// FLAKY: https://github.com/elastic/kibana/issues/173681
describe.skip('For each artifact list under management', function () {
targetTags(this, ['@ess', '@serverless']);
this.timeout(60_000 * 5);
let indexedData: IndexedHostsAndAlertsResponse;