Skip to content

Commit b4c1771

Browse files
committed
tests: temp skip filter log tests
1 parent 94b5073 commit b4c1771

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/actions/public/getFilterChanges.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ test('new blocks', async () => {
9898
})
9999

100100
describe('events', () => {
101-
test('no args', async () => {
101+
// TODO: enable when https://github.com/foundry-rs/foundry/issues/4205 is fixed.
102+
test.skip('no args', async () => {
102103
const filter = await createEventFilter(publicClient)
103104

104105
await sendTransaction(walletClient, {
@@ -133,7 +134,8 @@ describe('events', () => {
133134
expect(logs.length).toBe(1)
134135
})
135136

136-
test('args: event', async () => {
137+
// TODO: enable when https://github.com/foundry-rs/foundry/issues/4205 is fixed.
138+
test.skip('args: event', async () => {
137139
const filter = await createEventFilter(publicClient, {
138140
event: 'Transfer(address from, address to, uint256 value)',
139141
})

src/actions/public/getFilterLogs.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ test('default', async () => {
4444
})
4545

4646
describe('events', () => {
47-
test('no args', async () => {
47+
// TODO: enable when https://github.com/foundry-rs/foundry/issues/4205 is fixed.
48+
test.skip('no args', async () => {
4849
const filter = await createEventFilter(publicClient)
4950

5051
await sendTransaction(walletClient, {
@@ -65,7 +66,8 @@ describe('events', () => {
6566
expect(logs.length).toBe(2)
6667
})
6768

68-
test('args: event', async () => {
69+
// TODO: enable when https://github.com/foundry-rs/foundry/issues/4205 is fixed.
70+
test.skip('args: event', async () => {
6971
const filter = await createEventFilter(publicClient, {
7072
event: 'Transfer(address from, address to, uint256 value)',
7173
})

0 commit comments

Comments
 (0)