Skip to content

Commit b968b88

Browse files
authored
Merge pull request #1129 from input-output-hk/test/LW-9418-skip-flaky-tests
test: skip flaky tests
2 parents 1553a9b + bb9fe42 commit b968b88

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/e2e/test/wallet/PersonalWallet/txChainHistory.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ describe('PersonalWallet/txChainHistory', () => {
6161
expect(normalizeTxBody(txFoundInHistory.body)).toEqual(normalizeTxBody(signedTx.body));
6262
});
6363

64-
it('can detect a ValueNotConserved error', async () => {
64+
// TODO LW-9972
65+
it.skip('can detect a ValueNotConserved error', async () => {
6566
expect.assertions(1);
6667
// Search chain history to see if the transaction is there.
6768
await firstValueFrom(

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ describe('createTypeormTipTracker', () => {
117117
tipTracker = createTypeormTipTracker({ connection$, reconnectionConfig: retryBackoffConfig });
118118
});
119119

120-
it('tip$ emits latest block', async () => {
120+
// TODO LW-9971
121+
it.skip('tip$ emits latest block', async () => {
121122
await expect(firstValueFrom(tipTracker.tip$)).resolves.toEqual(header2);
122123
});
123124

0 commit comments

Comments
 (0)