From 793a35df1d7b116e4664e0d3a30c34181657acf2 Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Tue, 27 Jul 2021 15:08:43 +0000 Subject: [PATCH] Remove .only from enableDisableTransfers --- --- a/tests/src/enableDisableTransfer.test.ts +++ b/tests/src/enableDisableTransfer.test.ts @@ -18,7 +18,7 @@ chai.use(chaiAsPromised); describe('Enable/Disable Transfers', () => { - it.only('User can transfer token with enabled transfer flag', async () => { + it('User can transfer token with enabled transfer flag', async () => { await usingApi(async () => { const Alice = privateKey('//Alice'); const Bob = privateKey('//Bob'); @@ -33,7 +33,7 @@ }); }); - it.only('User can\'n transfer token with disabled transfer flag', async () => { + it('User can\'n transfer token with disabled transfer flag', async () => { await usingApi(async () => { const Alice = privateKey('//Alice'); const Bob = privateKey('//Bob'); -- gitstuff