Skip to content

Commit

Permalink
skip flaky suite (elastic#108633)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Aug 30, 2021
1 parent 613b535 commit e22c890
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ describe('RollingFileAppender', () => {
const message = (index: number) => `some message of around 40 bytes number ${index}`;
const expectedFileContent = (indices: number[]) => indices.map(message).join('\n') + '\n';

describe('`size-limit` policy with `numeric` strategy', () => {
// FLAKY: https://github.com/elastic/kibana/issues/108633
describe.skip('`size-limit` policy with `numeric` strategy', () => {
it('rolls the log file in the correct order', async () => {
root = createRoot({
type: 'rolling-file',
Expand Down

0 comments on commit e22c890

Please sign in to comment.