Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌊 Streams - unskip test debug #208150

Merged
merged 11 commits into from
Jan 28, 2025
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
Loading