skip flaky suite (#171380)

This commit is contained in:
Tiago Costa 2023-11-16 20:39:21 +00:00
parent 7398fe9de0
commit 9e087f4580
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -23,12 +23,13 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const log = getService('log');
// FLAKY: https://github.com/elastic/kibana/issues/171380
/* This test simulates an air-gapped environment in which the user doesn't have access to EPR.
/* We first download the package from the registry as done during build time, and then
/* attempt to install it from the local file system. The API response from EPM provides
/* us with the information of whether the package was installed from the registry or
/* from a package that was bundled with Kibana */
describe('@ess @serverless @skipInQA install_bundled_prebuilt_rules', () => {
describe.skip('@ess @serverless @skipInQA install_bundled_prebuilt_rules', () => {
beforeEach(async () => {
await deleteAllRules(supertest, log);
await deleteAllPrebuiltRuleAssets(es);