Skip to content

Commit

Permalink
fix: remove duplicating test
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Feb 23, 2024
1 parent 0281351 commit 06bffb0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/integration-tests/tests/api/transactions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,9 @@ describe("Transactions", () => {
expect(response.status).toBe(200);
expect(response.body.items[1].from).toBe(Wallets.richWalletAddress);
expect(response.body.items[1].to).toBe(Wallets.mainWalletAddress);
expect(typeof response.body.items[1].blockNumber).toStrictEqual("number");
expect(response.body.items[1].transactionHash).toBe(txHash);
expect(typeof response.body.items[1].blockNumber).toStrictEqual("number");
expect(response.body.items[1].tokenAddress).toBe(Token.ETHER_ERC20_Address);
expect(response.body.items[1].amount).toBe("1000000000000");
expect(response.body.items[1].type).toBe("transfer");
expect(response.body.items[1].tokenType).toBe("ETH");
expect(typeof response.body.items[1].fields).toBeTruthy(); // can be null
expect(typeof response.body.items[1].isInternal).toStrictEqual("boolean");
expect(typeof response.body.items[1].token).toStrictEqual("object");
});
});

Expand Down

0 comments on commit 06bffb0

Please sign in to comment.