We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84cb023 commit 03826a4Copy full SHA for 03826a4
packages/zora/src/test-setup.ts
@@ -1,3 +1,4 @@
1
+import { getAddress } from 'viem'
2
import { createTestCase } from './utils'
3
import {
4
BASIC_PURCHASE,
@@ -11,6 +12,9 @@ export const passingTestCases = [
11
12
createTestCase(MINT_WITH_REWARDS, 'Minting with rewards'),
13
createTestCase(MINT_WITH_REWARDS_1155, 'Minting with rewards 1155'),
14
createTestCase(MINT_BATCH_WITHOUT_FEES, 'When using the batch mint function'),
15
+ createTestCase(MINT_WITH_REWARDS, 'when contractAddress is checksummed', {
16
+ contractAddress: getAddress(MINT_WITH_REWARDS.params.contractAddress),
17
+ }),
18
]
19
20
export const failingTestCases = [
0 commit comments