From 95ba9233931c8ffc99757a451f31340ba2a47462 Mon Sep 17 00:00:00 2001 From: "Christiane (Tina) Heiligers" Date: Thu, 3 Aug 2023 13:43:39 -0700 Subject: [PATCH] unskips jest integration test (#162854) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Ahmad Bamieh fix https://github.com/elastic/kibana/issues/108633 --- .../logging/integration_tests/rolling_file_appender.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/server/logging/integration_tests/rolling_file_appender.test.ts b/src/core/server/logging/integration_tests/rolling_file_appender.test.ts index d32dc04aa22c5..d33466fb5e434 100644 --- a/src/core/server/logging/integration_tests/rolling_file_appender.test.ts +++ b/src/core/server/logging/integration_tests/rolling_file_appender.test.ts @@ -60,8 +60,7 @@ describe('RollingFileAppender', () => { const message = (index: number) => `some message of around 40 bytes number ${index}`; const expectedFileContent = (indices: number[]) => indices.map(message).join('\n') + '\n'; - // FLAKY: https://github.com/elastic/kibana/issues/108633 - describe.skip('`size-limit` policy with `numeric` strategy', () => { + describe('`size-limit` policy with `numeric` strategy', () => { it('rolls the log file in the correct order', async () => { root = createRoot({ type: 'rolling-file',