Skip to content

Commit

Permalink
🌊 Streams - unskip test debug (elastic#208150)
Browse files Browse the repository at this point in the history
Fixes elastic#206482
Fixes elastic#206483

I did some tests running the flaky part in a loop and couldn't get it to
fail once both locally and on CI.
I also reviewed the code and I can't tell how this could be flaky. My
guess is that something changed since we skipped this test.

Before spending more time on it, let's try to unskip - if it still
causes problems we can quickly skip again.

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
flash1293 and kibanamachine authored Jan 28, 2025
1 parent 163f7ea commit 8bb48a4
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,9 @@ describe('StorageIndexAdapter', () => {
await verifyClean();
});

// FLAKY: https://github.com/elastic/kibana/issues/206482
// FLAKY: https://github.com/elastic/kibana/issues/206483
describe.skip('after rolling over the index manually and indexing the same document', () => {
describe('after rolling over the index manually and indexing the same document', () => {
beforeAll(async () => {
await verifyClean();
await client.index({ id: 'doc1', document: { foo: 'bar' } });
await rolloverIndex();
await client.index({ id: 'doc1', document: { foo: 'bar' } });
Expand Down

0 comments on commit 8bb48a4

Please sign in to comment.