From fcffda0816501908c816ebdb23467473dbf9cea5 Mon Sep 17 00:00:00 2001 From: Max Andreev Date: Tue, 06 Dec 2022 15:55:24 +0000 Subject: [PATCH] Skip tests for unique --- --- a/tests/src/burnItem.test.ts +++ b/tests/src/burnItem.test.ts @@ -140,7 +140,7 @@ await expect(token.burn(bob)).to.be.rejectedWith('common.NoPermission'); }); - itSub('RFT: cannot burn non-owned token pieces', async ({helper}) => { + itSub.ifWithPallets('RFT: cannot burn non-owned token pieces', [Pallets.ReFungible], async ({helper}) => { const collection = await helper.rft.mintCollection(alice); const aliceToken = await collection.mintToken(alice, 10n, {Substrate: alice.address}); const bobToken = await collection.mintToken(alice, 10n, {Substrate: bob.address}); -- gitstuff