mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
TST: fixes e2e because of absent pushes on emulator
This commit is contained in:
parent
2448a15cac
commit
b93713d817
1 changed files with 5 additions and 1 deletions
|
@ -47,7 +47,11 @@ describe('BlueWallet UI Tests', () => {
|
|||
await element(by.id('cr34t3d')).tap();
|
||||
await element(by.id('ReceiveButton')).tap();
|
||||
await element(by.text('Yes, I have')).tap();
|
||||
await element(by.text(`No, and don't ask me again`)).tap();
|
||||
try {
|
||||
// in case emulator has no google services and doesnt support pushes
|
||||
// we just dont show this popup
|
||||
await element(by.text(`No, and don't ask me again`)).tap();
|
||||
} catch (_) {}
|
||||
await yo('BitcoinAddressQRCodeContainer');
|
||||
await yo('BlueCopyTextToClipboard');
|
||||
await element(by.id('SetCustomAmountButton')).tap();
|
||||
|
|
Loading…
Add table
Reference in a new issue