From 67cf932625117d1268bf5401cc7da63759a260f2 Mon Sep 17 00:00:00 2001 From: Sergio Ceron Date: Fri, 2 Jun 2023 10:17:05 -0600 Subject: [PATCH] Default export --- tests/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.ts b/tests/index.ts index 1744364..905f116 100644 --- a/tests/index.ts +++ b/tests/index.ts @@ -29,7 +29,7 @@ describe('Tests', () => { it('should send a transaction', async () => { const contract = new ethers.Contract(contractAddress, PKD.abi, signer); const stored = await contract.publicKeys('0x173CF75f0905338597fcd38F5cE13E6840b230e9'); - expect(stored).to.be.equals(""); + expect(stored).to.not.null; return false; }); }