git.delta.rocks / unique-network / refs/commits / 66caf453e64f

difftreelog

Remove only

Max Andreev2022-12-16parent: #1d1847e.patch.diff
in: master

2 files changed

modifiedtests/src/eth/allowlist.test.tsdiffbeforeafterboth
166 {mode: 'rft' as const, cross: false, requiredPallets: [Pallets.ReFungible]},166 {mode: 'rft' as const, cross: false, requiredPallets: [Pallets.ReFungible]},
167 {mode: 'ft' as const, cross: false, requiredPallets: []},167 {mode: 'ft' as const, cross: false, requiredPallets: []},
168 ].map(testCase => 168 ].map(testCase =>
169 itEth.only(`Non-owner cannot add or remove from collection allowlist ${testCase.cross ? 'cross ' : ''}${testCase.mode}`, async ({helper}) => {169 itEth(`Non-owner cannot add or remove from collection allowlist ${testCase.cross ? 'cross ' : ''}${testCase.mode}`, async ({helper}) => {
170 // Select methods:170 // Select methods:
171 const addToAllowList = testCase.cross ? 'addToCollectionAllowListCross' : 'addToCollectionAllowList';171 const addToAllowList = testCase.cross ? 'addToCollectionAllowListCross' : 'addToCollectionAllowList';
172 const removeFromAllowList = testCase.cross ? 'removeFromCollectionAllowListCross' : 'removeFromCollectionAllowList';172 const removeFromAllowList = testCase.cross ? 'removeFromCollectionAllowListCross' : 'removeFromCollectionAllowList';
modifiedtests/src/eth/reFungibleToken.test.tsdiffbeforeafterboth
--- 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();