mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 23:27:26 +01:00
Merge pull request #2534 from BlueWallet/fix-tst-pushes
TST: fixes e2e because of absent pushes on emulator
This commit is contained in:
commit
d9e173a2f2
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