From 66caf453e64f2ffa4125a41c8ee1dc59a3042d6b Mon Sep 17 00:00:00 2001 From: Max Andreev Date: Fri, 16 Dec 2022 14:42:19 +0000 Subject: [PATCH] Remove only --- --- a/tests/src/eth/allowlist.test.ts +++ b/tests/src/eth/allowlist.test.ts @@ -166,7 +166,7 @@ {mode: 'rft' as const, cross: false, requiredPallets: [Pallets.ReFungible]}, {mode: 'ft' as const, cross: false, requiredPallets: []}, ].map(testCase => - itEth.only(`Non-owner cannot add or remove from collection allowlist ${testCase.cross ? 'cross ' : ''}${testCase.mode}`, async ({helper}) => { + itEth(`Non-owner cannot add or remove from collection allowlist ${testCase.cross ? 'cross ' : ''}${testCase.mode}`, async ({helper}) => { // Select methods: const addToAllowList = testCase.cross ? 'addToCollectionAllowListCross' : 'addToCollectionAllowList'; const removeFromAllowList = testCase.cross ? 'removeFromCollectionAllowListCross' : 'removeFromCollectionAllowList'; --- a/tests/src/eth/reFungibleToken.test.ts +++ b/tests/src/eth/reFungibleToken.test.ts @@ -288,7 +288,7 @@ 'transfer', 'transferCross', ].map(testCase => - itEth.only(`Can perform ${testCase}()`, async ({helper}) => { + itEth(`Can perform ${testCase}()`, async ({helper}) => { const isCross = testCase === 'transferCross'; const owner = await helper.eth.createAccountWithBalance(donor); const receiverEth = helper.eth.createAccount(); -- gitstuff