Skip to content

Commit

Permalink
Update tokenId
Browse files Browse the repository at this point in the history
  • Loading branch information
bonnie57 committed Apr 8, 2024
1 parent 2fcca21 commit 5fde1eb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"build": "pnpm run fix && preconstruct build",
"test": "pnpm run test:unit && pnpm run test:integration",
"test:unit": "TS_NODE_PROJECT='./tsconfig.test.json' c8 --all --src ./src mocha -r ts-node/register './test/unit/**/*.test.ts'",
"test:integration": "TS_NODE_PROJECT='./tsconfig.test.json' mocha -r ts-node/register './test/integration/storyTestNet/*.test.ts' --timeout 240000",
"test:integration": "TS_NODE_PROJECT='./tsconfig.test.json' mocha -r ts-node/register './test/integration/**/*.test.ts' --timeout 240000",
"fix": "pnpm run format:fix && pnpm run lint:fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
Expand Down
1 change: 0 additions & 1 deletion packages/core-sdk/test/integration/policy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ describe.skip("Test Policy Functions", () => {
client.policy.ipAccountABI = IPAccountABI;
client.policy.licensingModuleConfig = LicensingModuleConfig;
client.policy.pilPolicyFrameworkManagerConfig = PILPolicyFrameworkManagerConfig;
client.policy.royaltyPolicyLAPConfig = RoyaltyPolicyLAPConfig;
client.ipAsset.ipAssetRegistryConfig = IPAssetRegistryConfig;
client.license.ipAccountABI = IPAccountABI;
client.license.licenseRegistryConfig = LicenseRegistryConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe("IP Asset Functions in storyTestnet", () => {
],
address: storyTestnetAddress.MockERC721,
functionName: "mintId",
args: [process.env.STORY_TEST_NET_TEST_WALLET_ADDRESS as Hex, BigInt(14)],
args: [process.env.STORY_TEST_NET_TEST_WALLET_ADDRESS as Hex, BigInt(43)],
});
const hash = await walletClient.writeContract(request);
const { logs } = await publicClient.waitForTransactionReceipt({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe("Test royalty Functions", () => {
describe("Royalty in storyTestNet", async function () {
let ipId1: Hex;
let ipId2: Hex;
let tokenId = 30;
let tokenId = 44;
const getIpId = async (): Promise<Hex> => {
tokenId++;

Expand Down

0 comments on commit 5fde1eb

Please sign in to comment.