Skip to content

Commit

Permalink
test: refactor and actualise Transactions tests
Browse files Browse the repository at this point in the history
Reverting commented step
  • Loading branch information
amelnytskyi committed Feb 27, 2024
1 parent ee338e8 commit 67acbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/transactions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ describe("Transactions", () => {

expect(response.status).toBe(200);
expect(response.body).toStrictEqual(expect.objectContaining({ hash: txHash }));
// expect(response.body).toStrictEqual(expect.objectContaining({ to: contract })) //unstable on CI
expect(response.body).toStrictEqual(expect.objectContaining({ to: contract }));
expect(response.body).toStrictEqual(expect.objectContaining({ from: Wallets.richWalletAddress }));
expect(response.body).toStrictEqual(expect.objectContaining({ isL1Originated: false }));
expect(response.body.value).toBe("0");
Expand Down

0 comments on commit 67acbc6

Please sign in to comment.