From aebd29785792c669af4b7f1d6da0660386bc0293 Mon Sep 17 00:00:00 2001 From: Ying Mao Date: Thu, 2 Nov 2023 08:17:28 -0400 Subject: [PATCH] Unskipping test (#170353) Resolves https://github.com/elastic/kibana/issues/168750 ## Summary The test failed with `Error: connect ECONNREFUSED` and just unskipping the test passed the flaky test runner 500 times so I think it was just a transient network issue. https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3856 https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3859 Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../test_suites/event_log/public_api_integration.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/test/plugin_api_integration/test_suites/event_log/public_api_integration.ts b/x-pack/test/plugin_api_integration/test_suites/event_log/public_api_integration.ts index 0b1ec65593a34..ed7d31efe1c10 100644 --- a/x-pack/test/plugin_api_integration/test_suites/event_log/public_api_integration.ts +++ b/x-pack/test/plugin_api_integration/test_suites/event_log/public_api_integration.ts @@ -23,8 +23,7 @@ export default function ({ getService }: FtrProviderContext) { const esArchiver = getService('esArchiver'); const kibanaServer = getService('kibanaServer'); - // FLAKY: https://github.com/elastic/kibana/issues/168750 - describe.skip('Event Log public API', () => { + describe('Event Log public API', () => { before(async () => { await spacesService.create({ id: 'namespace-a',