1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

solve problem with NftCreateData constant

This commit is contained in:
Miquel A. Cabot 2022-04-06 17:03:50 +02:00
parent 050edc4081
commit 4e1a79ac21

View File

@ -47,7 +47,9 @@ describe('Nft Factory test', () => {
name: NFT_NAME,
symbol: NFT_SYMBOL,
templateIndex: 1,
tokenURI: NFT_TOKEN_URI
tokenURI: NFT_TOKEN_URI,
transferable: true,
owner: factoryOwner
}
before(async () => {
@ -57,6 +59,8 @@ describe('Nft Factory test', () => {
user1 = accounts[2]
user2 = accounts[3]
NFT_DATA.owner = factoryOwner
ercParams = {
templateIndex: 1,
minter: nftOwner,