Skip to content

Commit

Permalink
Updating tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Dec 9, 2022
1 parent 6350297 commit 594fd69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/contracts.test.tsx
Expand Up @@ -13,7 +13,7 @@ describe('Contracts', () => {
it('should load contracts', async () => {
const contracts = await loadIdentityContracts({ provider });
expect(contracts.SoulboundIdentityContract).toBeDefined();
expect(contracts.SoulboundCreditReportContract).toBeDefined();
expect(contracts.SoulboundCreditScoreContract).toBeDefined();
});

it('should display contracts addresses properly', async () => {
Expand All @@ -23,8 +23,8 @@ describe('Contracts', () => {
contracts.SoulboundIdentityContract.address
);
console.log(
'SoulboundCreditReportContract Address',
contracts.SoulboundCreditReportContract.address
'SoulboundCreditScoreContract Address',
contracts.SoulboundCreditScoreContract.address
);
});
});

0 comments on commit 594fd69

Please sign in to comment.