Skip to content

Commit

Permalink
fix: e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
OtavioStasiak committed Mar 10, 2025
1 parent b4991db commit 9f9a581
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e/tests/onboarding/04-createuser.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ describe('Create user screen', () => {
await element(by.id('register-view-password')).replaceText(user.password);
await element(by.id('register-view-password')).tapReturnKey();
await element(by.id('register-view-confirm-password')).replaceText(user.password);
await element(by.id('register-view-confirm-password')).tapReturnKey();
await element(by.id('register-view')).swipe('down', 'fast');
await element(by.id('register-view')).swipe('up', 'fast');
await element(by.id('register-view-submit')).tap();

await expectValidRegisterOrRetry(device.getPlatform());
});
Expand Down

0 comments on commit 9f9a581

Please sign in to comment.