From 2ed86e8f785e4f2cebd1179ef5ec19176a0eb497 Mon Sep 17 00:00:00 2001 From: Vectorized Date: Fri, 23 Aug 2024 07:06:07 +0000 Subject: [PATCH] Tidy tests --- test/extensions/ERC721ABatchBurnable.test.js | 25 -------------------- 1 file changed, 25 deletions(-) diff --git a/test/extensions/ERC721ABatchBurnable.test.js b/test/extensions/ERC721ABatchBurnable.test.js index 8c3fbe975..dad2a5d7b 100644 --- a/test/extensions/ERC721ABatchBurnable.test.js +++ b/test/extensions/ERC721ABatchBurnable.test.js @@ -232,31 +232,6 @@ const createTestSuite = ({ contract, constructorArgs }) => } }); - // it('with tokens burned and cleared', async function () { - // const initializedToken = 15; - - // expect((await this.erc721aBatchBurnable.getOwnershipAt(initializedToken - 1))[0]) - // .to.be.equal(ZERO_ADDRESS); - // expect((await this.erc721aBatchBurnable.getOwnershipAt(initializedToken))[0]).to.be.equal(ZERO_ADDRESS); - - // // Initialize token - // await this.erc721aBatchBurnable.initializeOwnershipAt(initializedToken); - // expect((await this.erc721aBatchBurnable.getOwnershipAt(initializedToken - 1))[0]) - // .to.be.equal(ZERO_ADDRESS); - // expect((await this.erc721aBatchBurnable.getOwnershipAt(initializedToken))[0]) - // .to.be.equal(this.addr1.address); - - // // Burn tokens - // await this.erc721aBatchBurnable.connect(this.addr1).batchBurn([initializedToken - 1, initializedToken]); - // expect((await this.erc721aBatchBurnable.getOwnershipAt(initializedToken - 1))[0]).to.be.equal( - // this.addr1.address - // ); - - // // Initialized tokens in a consecutive burn are cleared - // expect((await this.erc721aBatchBurnable.getOwnershipAt(3))[0]).to.be.equal(ZERO_ADDRESS); - // expect((await this.erc721aBatchBurnable.getOwnershipAt(initializedToken))[0]).to.be.equal(ZERO_ADDRESS); - // }); - it('with token before previously burnt token transferred and burned', async function () { await this.erc721aBatchBurnable .connect(this.addr1)