[Security Solution] unskip tests (#125675) (#125722)

(cherry picked from commit c6b356c437)

Co-authored-by: Joey F. Poon <joey.poon@elastic.co>
This commit is contained in:
Kibana Machine 2022-02-15 17:27:39 -05:00 committed by GitHub
parent 8fd34be2fe
commit ebf5896dff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,8 +38,7 @@ export default function ({ getService }: FtrProviderContext) {
describe('test metadata apis', () => {
describe('list endpoints GET route', () => {
// FLAKY: https://github.com/elastic/kibana/issues/123253
describe.skip('with .metrics-endpoint.metadata_united_default index', () => {
describe('with .metrics-endpoint.metadata_united_default index', () => {
const numberOfHostsInFixture = 2;
before(async () => {
@ -65,11 +64,11 @@ export default function ({ getService }: FtrProviderContext) {
]);
// wait for latest metadata transform to run
await new Promise((r) => setTimeout(r, 30000));
await new Promise((r) => setTimeout(r, 60000));
await startTransform(getService, METADATA_UNITED_TRANSFORM);
// wait for united metadata transform to run
await new Promise((r) => setTimeout(r, 15000));
await new Promise((r) => setTimeout(r, 30000));
});
after(async () => {