difftreelog
Remove only
in: master
2 files changed
tests/src/eth/allowlist.test.tsdiffbeforeafterboth166 {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';tests/src/eth/reFungibleToken.test.tsdiffbeforeafterboth288 '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();