Skip to content

Commit c6700aa

Browse files
authored
Merge pull request #1330 from input-output-hk/test/skip-flaky-test
Skip the flaky test suite
2 parents 38601b1 + ae9969f commit c6700aa

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

packages/projection-typeorm/test/createTypeormTipTracker.test.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ const stubSingleEventProjection = (eventType: ChainSyncEventType, header: Cardan
1919
eventType
2020
} as BaseProjectionEvent);
2121

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

@@ -106,8 +107,7 @@ describe('createTypeormTipTracker', () => {
106107
});
107108
});
108109

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

@@ -134,8 +134,7 @@ describe('createTypeormTipTracker', () => {
134134
});
135135
});
136136

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

0 commit comments

Comments
 (0)