-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automated Integration Tests Flows #1686
Automated Integration Tests Flows #1686
Conversation
…etup Pin Code pages
…m/cake-tech/cake_wallet into CW-659-Automated-Integrated-Tests
…CW-659-Automated-Integrated-Tests
…CW-659-Automated-Integrated-Tests
…CW-659-Transaction-History-Automated-Tests
…CW-659-Automated-Integrated-Tests
…m/cake-tech/cake_wallet into CW-659-Restore-Wallets-Automated-Tests
…ub.com/cake-tech/cake_wallet into CW-659-Create-Wallets-Automated-Tests
…b.com/cake-tech/cake_wallet into CW-659-Confirm-Seeds-Display-Correctly
…ub.com/cake-tech/cake_wallet into CW-659-Transaction-History-Automated-Tests
…CW-659-Transaction-History-Automated-Tests
…CW-659-Transaction-History-Automated-Tests
…CW-659-Transaction-History-Automated-Tests
…ing that all wallet types are restored or created correctly
…CW-659-Transaction-History-Automated-Tests
bool _shouldExitLoop(bool hasTxHistoryWhileSyncing, bool isSynced, bool itemsLoaded) { | ||
if (hasTxHistoryWhileSyncing) { | ||
// When hasTxHistoryWhileSyncing is true, exit when status is synced | ||
return isSynced; | ||
} else { | ||
// When hasTxHistoryWhileSyncing is false, exit when status is synced and items are loaded | ||
return isSynced && itemsLoaded; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor:
it shouldn't matter, cuz even if the wallet has some transactions while it's syncinc (Monero) then we would also need to check on the itemsLoaded
boolean
secrets.bitcoinTestWalletSeeds, | ||
); | ||
|
||
await dashboardPageRobot.confirmWalletTypeIsDisplayedCorrectly(WalletType.bitcoin); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
better be with a Monero wallet, since bitcoin also fetches the tx history almost immediately
but don't delete this one, just add another case for Monero
…github.com/cake-tech/cake_wallet into CW-659-Transaction-History-Automated-Tests
Issue Number (if Applicable): Fixes #
Description
More Automated Integration Tests
Please include a summary of the changes and which issue is fixed / feature is added.
CW-729: Create Wallets Flow Automated Test
CW-730: Restore Wallets Flow Automated Test
CW-731: Transaction History Automated Test
CW-733: Confirm Credentials Display Correctly Automated Test
Pull Request - Checklist