Skip to content

Commit

Permalink
skip flaky suite (#119267)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Mar 6, 2024
1 parent be634a3 commit b2ac0ed
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default function ({ getService }: FtrProviderContext) {
await logFile.reset();
});

it('logs audit events when reading and writing saved objects', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/119267
it.skip('logs audit events when reading and writing saved objects', async () => {
await supertest.get('/audit_log?query=param').set('kbn-xsrf', 'foo').expect(204);
await logFile.isWritten();
const content = await logFile.readJSON();
Expand Down

0 comments on commit b2ac0ed

Please sign in to comment.