Skip to content

Commit d58dd0b

Browse files
authored
Merge pull request #397 from storyprotocol/origin/bp/sdk-integration-tests-3
Update test cases + Removed coverage check
2 parents 5f9e6b1 + 8541f77 commit d58dd0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"build": "pnpm run fix && preconstruct build",
2020
"test": "pnpm run test:unit",
2121
"test:unit": "TS_NODE_PROJECT='./tsconfig.test.json' c8 --all --src ./src mocha -r ts-node/register './test/unit/**/*.test.ts'",
22-
"test:integration": "TS_NODE_PROJECT='./tsconfig.test.json' c8 --all --src ./src mocha -r ts-node/register './test/integration/**/*.test.ts' --timeout 240000",
22+
"test:integration": "TS_NODE_PROJECT='./tsconfig.test.json' mocha -r ts-node/register './test/integration/**/*.test.ts' --timeout 240000",
2323
"fix": "pnpm run format:fix && pnpm run lint:fix",
2424
"format": "prettier --check .",
2525
"format:fix": "prettier --write .",

packages/core-sdk/test/integration/ipAsset.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ describe("IP Asset Functions", () => {
151151
terms: {
152152
transferable: true,
153153
royaltyPolicy: royaltyPolicyLapAddress[homer],
154-
defaultMintingFee: 1n,
154+
defaultMintingFee: 0n,
155155
expiration: 0n,
156156
commercialUse: true,
157157
commercialAttribution: false,
@@ -455,7 +455,7 @@ describe("IP Asset Functions", () => {
455455
terms: {
456456
transferable: true,
457457
royaltyPolicy: royaltyPolicyLapAddress[homer],
458-
defaultMintingFee: 10000n,
458+
defaultMintingFee: 0n,
459459
expiration: 1000n,
460460
commercialUse: true,
461461
commercialAttribution: false,

0 commit comments

Comments
 (0)