Flaky test: rolling file appender (#162851)

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Ahmad Bamieh <ahmad.bamyeh@elastic.co>
This commit is contained in:
Christiane (Tina) Heiligers 2023-08-03 13:46:14 -07:00 committed by GitHub
parent 1520d47ff7
commit b443c0cb9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,8 +59,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',