Skip to content

Commit

Permalink
chore: skip
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed Jun 24, 2024
1 parent 9d227cf commit 4f0a750
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/actions/readContracts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const config = createConfig({
},
})

test.skip('default', async () => {
test('default', async () => {
const spy = vi.spyOn(multicall, 'multicall')
const config = createConfig({
chains: [mainnet, mainnet2],
Expand Down Expand Up @@ -84,7 +84,7 @@ test.skip('default', async () => {
`)
})

test('falls back to readContract if multicall is not available', async () => {
test.skip('falls back to readContract if multicall is not available', async () => {
const spy = vi.spyOn(readContract, 'readContract')
const config = createConfig({
chains: [mainnet, { ...mainnet2, contracts: { multicall3: undefined } }],
Expand Down Expand Up @@ -158,7 +158,7 @@ test('falls back to readContract if multicall is not available', async () => {
`)
})

test('multichain', async () => {
test.skip('multichain', async () => {
const config = createConfig({
chains: [mainnet, mainnet2, optimism],
transports: {
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/hooks/useReadContracts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ test('default', async () => {
`)
})

test('multichain', async () => {
test.skip('multichain', async () => {
const { mainnet, mainnet2, optimism } = chain
const { result } = renderHook(() =>
useReadContracts({
Expand Down

0 comments on commit 4f0a750

Please sign in to comment.