--- 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();