From a38d82e201be7425f5ee8e06a4ead531de2b7a0f Mon Sep 17 00:00:00 2001 From: dqtkien Date: Tue, 3 Sep 2024 11:05:37 +0700 Subject: [PATCH] Fix test only run XORO token test --- test/010-xoro.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/010-xoro.spec.ts b/test/010-xoro.spec.ts index 602d3e5..7c0874a 100644 --- a/test/010-xoro.spec.ts +++ b/test/010-xoro.spec.ts @@ -23,7 +23,7 @@ let contract: XORO; const packData = (amount: bigint, address: string): bigint => (amount << 160n) | BigInt(address); -describe.only('XORO token', function () { +describe('XORO token', function () { it('XORO token must be deployed correctly', async () => { accounts = await hre.ethers.getSigners(); [deployerSigner, player01, player02, player03, newOwner, operator1, operator2, fakeOperator, operator3] = accounts;