Skip to content

Commit f86936d

Browse files
committed
watcher: skip flaky terra classic tests
1 parent 484bc4a commit f86936d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

watcher/src/watchers/__tests__/CosmwasmWatcher.test.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ test('getFinalizedBlockNumber(terra explorer)', async () => {
5454
expect(blockNumber).toBeGreaterThan(10980872);
5555
});
5656

57-
test('getMessagesForBlocks(terra explorer)', async () => {
57+
// flaky rpc, skip
58+
test.skip('getMessagesForBlocks(terra explorer)', async () => {
5859
const watcher = new TerraExplorerWatcher('terra');
5960
const vaasByBlock = await watcher.getMessagesForBlocks(10974196, 10974197);
6061
const entries = Object.entries(vaasByBlock);
@@ -69,7 +70,8 @@ test('getMessagesForBlocks(terra explorer)', async () => {
6970
);
7071
});
7172

72-
test('getMessagesForBlocks(terra explorer, no useful info)', async () => {
73+
// flaky rpc, skip
74+
test.skip('getMessagesForBlocks(terra explorer, no useful info)', async () => {
7375
const watcher = new TerraExplorerWatcher('terra');
7476
const vaasByBlock = await watcher.getMessagesForBlocks(10975000, 10975010);
7577
const entries = Object.entries(vaasByBlock);

0 commit comments

Comments
 (0)