@@ -67,7 +67,7 @@ describe('Nft tests', () => {
6767 expect ( collection . isSoulbound ) . toEqual ( false ) ;
6868 } ) ;
6969
70- test ( 'creates a new unique collection' , async ( ) => {
70+ test . only ( 'creates a new unique collection' , async ( ) => {
7171 const uniqueCollectionData = {
7272 ...nftData ,
7373 maxSupply : 1000 ,
@@ -78,21 +78,25 @@ describe('Nft tests', () => {
7878 name : 'Unique NFT 1' ,
7979 description : 'Description for Unique NFT 1' ,
8080 image : 'https://example.com/nft1.png' ,
81- attributes : {
82- value : 'Attribute Value 1' ,
83- trait_type : 'Attribute Type 1' ,
84- display_type : 'string' ,
85- } ,
81+ attributes : [
82+ {
83+ value : 'Attribute Value 1' ,
84+ trait_type : 'Attribute Type 1' ,
85+ display_type : 'string' ,
86+ } ,
87+ ] ,
8688 } ,
8789 '2' : {
8890 name : 'Unique NFT 2' ,
8991 description : 'Description for Unique NFT 2' ,
9092 image : 'https://example.com/nft2.png' ,
91- attributes : {
92- value : 'Attribute Value 2' ,
93- trait_type : 'Attribute Type 2' ,
94- display_type : 'string' ,
95- } ,
93+ attributes : [
94+ {
95+ value : 'Attribute Value 2' ,
96+ trait_type : 'Attribute Type 2' ,
97+ display_type : 'string' ,
98+ } ,
99+ ] ,
96100 } ,
97101 } ,
98102 } ;
0 commit comments