Skip to content

Commit

Permalink
test(receive): fix numberpad e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pwltr committed Feb 8, 2024
1 parent 76b9f71 commit 9ee1665
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e/numberpad.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ d('NumberPad', () => {
await element(
by.id('NRemove').withAncestor(by.id('ReceiveNumberPad')),
).multiTap(8);
await expect(element(by.text('0.00'))).toBeVisible();
await expect(
element(by.text('0.00').withAncestor(by.id('ReceiveNumberPadTextField'))),
).toBeVisible();
await element(by.id('N0').withAncestor(by.id('ReceiveNumberPad'))).multiTap(
2,
);
Expand Down

0 comments on commit 9ee1665

Please sign in to comment.