From 22a4d5338189662a3bbbb7239bb88a97557b57fc Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Thu, 13 Apr 2023 09:45:19 +0000 Subject: [PATCH] fix: remove .only --- --- a/tests/src/xcm/xcmUnique.test.ts +++ b/tests/src/xcm/xcmUnique.test.ts @@ -726,7 +726,7 @@ expect(targetAccountBalance).to.be.equal(validTransferAmount); }); - itSub.only('Should not accept reserve transfer of UNQ from Acala', async ({helper}) => { + itSub('Should not accept reserve transfer of UNQ from Acala', async ({helper}) => { const testAmount = 10_000n * (10n ** UNQ_DECIMALS); const [targetAccount] = await helper.arrange.createAccounts([0n], alice); @@ -1255,7 +1255,7 @@ expect(targetAccountBalance).to.be.equal(validTransferAmount); }); - itSub.only('Should not accept reserve transfer of UNQ from Moonbeam', async ({helper}) => { + itSub('Should not accept reserve transfer of UNQ from Moonbeam', async ({helper}) => { const testAmount = 10_000n * (10n ** UNQ_DECIMALS); const [targetAccount] = await helper.arrange.createAccounts([0n], alice); @@ -1651,7 +1651,7 @@ expect(targetAccountBalance).to.be.equal(validTransferAmount); }); - itSub.only('Should not accept reserve transfer of UNQ from Astar', async ({helper}) => { + itSub('Should not accept reserve transfer of UNQ from Astar', async ({helper}) => { const testAmount = 10_000n * (10n ** UNQ_DECIMALS); const [targetAccount] = await helper.arrange.createAccounts([0n], alice); -- gitstuff