Skip to content

Commit

Permalink
Merge pull request #1330 from input-output-hk/test/skip-flaky-test
Browse files Browse the repository at this point in the history
Skip the flaky test suite
  • Loading branch information
iccicci authored Jun 12, 2024
2 parents 38601b1 + ae9969f commit c6700aa
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const stubSingleEventProjection = (eventType: ChainSyncEventType, header: Cardan
eventType
} as BaseProjectionEvent);

describe('createTypeormTipTracker', () => {
// TODO LW-9971
describe.skip('createTypeormTipTracker', () => {
const entities = [BlockEntity];
const retryBackoffConfig: RetryBackoffConfig = { initialInterval: 1 };

Expand Down Expand Up @@ -106,8 +107,7 @@ describe('createTypeormTipTracker', () => {
});
});

// TODO LW-9971
describe.skip('with 2 blocks in the buffer', () => {
describe('with 2 blocks in the buffer', () => {
let header1: Cardano.PartialBlockHeader;
let header2: Cardano.PartialBlockHeader;

Expand All @@ -134,8 +134,7 @@ describe('createTypeormTipTracker', () => {
});
});

// TODO LW-9971
describe.skip('with failing connection', () => {
describe('with failing connection', () => {
it('reconnects and eventually emits the tip', async () => {
connection$ = createStubObservable(
throwError(() => new NoConnectionForRepositoryError('conn')),
Expand Down

0 comments on commit c6700aa

Please sign in to comment.