-
Notifications
You must be signed in to change notification settings - Fork 0
ci: enable e2es again #91
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
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
context('deposit should complete successfully', () => { | ||
cy.selectTransactionsPanelTab('settled'); | ||
|
||
cy.findTransactionInTransactionHistory(txData); |
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.
cy.findTransactionInTransactionHistory
was being called twice leading to incorrect behaviour. Removed one. Tests passed.
context('open transactions history panel', () => { | ||
cy.switchToTransactionHistoryTab('settled'); | ||
cy.findByLabelText('Load More Transactions').click(); | ||
cy.findAllByTestId(CLAIMABLE_ROW_IDENTIFIER).its('length').should('be.gt', 0); |
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.
why is this removed?
No description provided.