Skip to content

Commit

Permalink
Fix erc721 import test
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Sep 19, 2024
1 parent 38010e9 commit 5700389
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ describe('ERC721 import', () => {
});

describe('GET /erc721/:id', () => {
const { defaultAccount } = NetworkService.getProvider(chainId);

it('HTTP 200', (done) => {
const [account] = Mock.accounts;
user.get(`/v1/erc721/${erc721._id}`)
Expand All @@ -95,8 +93,6 @@ describe('ERC721 import', () => {
expect(body.name).toBe(nftName);
expect(body.symbol).toBe(nftSymbol);
expect(body.address).toBe(nftContract.options.address);
expect(body.totalSupply).toBe('1');
expect(body.owner).toBe(defaultAccount);
})
.expect(200, done);
});
Expand Down

0 comments on commit 5700389

Please sign in to comment.