From 1dc6fea59145f60fb6436d639f81b159b4efca55 Mon Sep 17 00:00:00 2001 From: "David E. Perez Negron R." Date: Wed, 27 Dec 2023 20:05:41 -0600 Subject: [PATCH] Add mint by index and some ToDo Tests --- test/AA.t.sol | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/test/AA.t.sol b/test/AA.t.sol index 5ed08c7..c23b38f 100644 --- a/test/AA.t.sol +++ b/test/AA.t.sol @@ -20,16 +20,19 @@ contract AATest is Test { // @notice this code safe mints an NFT to address 0x1 function testMint() public { address to = address(0x1); - aaContract._mint(to,nfts[0]); - console.log("hola"); + aaContract.mintNFT(to, 0); + address dco2scAddress = address(aaContract.dco2sc()); + console.log("{}",dco2scAddress); //assertEq(aaContract.ownerOf(0), to, "Token should be minted to specified address."); } + + // Test mint all NFTs but -20 - // @notice: here we test getting the Base and full URIS - //function testGetURI68() public { - // aaContract._mint(address(0x1), nfts[68]); - // string memory tokenURI = aaContract.tokenURI(0); - // console.log(tokenURI); - // assertEq(tokenURI, string.concat(baseURI, nfts[68])); - //} + // Test Invite Eligible + + // test Check If Eligible + + // Test Airdrop + + // Test Others }