From a5ed1cdb6cd58df4c5db99acc33f96ffdd97aae9 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 17 Feb 2023 11:42:52 +0000 Subject: [PATCH] test: remove .only --- --- a/tests/src/sub/nesting/nesting.negative.test.ts +++ b/tests/src/sub/nesting/nesting.negative.test.ts @@ -109,7 +109,7 @@ {mode: 'nft' as const, nesting: {tokenOwner: true, collectionAdmin: false}}, {mode: 'nft' as const, nesting: {tokenOwner: false, collectionAdmin: true}}, ].map(testCase => { - itSub.only(`${testCase.nesting.tokenOwner ? 'Admin' : 'Token owner'} cannot nest when only ${testCase.nesting.tokenOwner ? 'tokenOwner' : 'collectionAdmin'} is allowed`, async ({helper}) => { + itSub(`${testCase.nesting.tokenOwner ? 'Admin' : 'Token owner'} cannot nest when only ${testCase.nesting.tokenOwner ? 'tokenOwner' : 'collectionAdmin'} is allowed`, async ({helper}) => { // Create collection with tokenOwner or create collection with collectionAdmin permission: const targetCollection = await helper.nft.mintCollection(alice, {permissions: {nesting: testCase.nesting}}); const targetTokenCharlie = await targetCollection.mintToken(alice, {Substrate: charlie.address}); -- gitstuff