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
--- 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';
modifiedtests/src/eth/reFungibleToken.test.tsdiffbeforeafterboth
288 'transfer',288 'transfer',
289 'transferCross',289 'transferCross',
290 ].map(testCase => 290 ].map(testCase =>
291 itEth.only(`Can perform ${testCase}()`, async ({helper}) => {291 itEth(`Can perform ${testCase}()`, async ({helper}) => {
292 const isCross = testCase === 'transferCross';292 const isCross = testCase === 'transferCross';
293 const owner = await helper.eth.createAccountWithBalance(donor);293 const owner = await helper.eth.createAccountWithBalance(donor);
294 const receiverEth = helper.eth.createAccount();294 const receiverEth = helper.eth.createAccount();