Skip to content

Commit

Permalink
test: check for existence of tokens after connecting with wallet (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique authored Mar 22, 2024
1 parent ba86720 commit f899dbe
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/e2e/specs/test.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ describe('Wallet App Test Cases', () => {
cy.acceptAccess().then((taskCompleted) => {
expect(taskCompleted).to.be.true;
});

cy.reload();

cy.acceptAccess().then((taskCompleted) => {
expect(taskCompleted).to.be.true;
});

cy.get('span').contains('ATOM').should('exist');
cy.get('span').contains('BLD').should('exist');
});
});
});

0 comments on commit f899dbe

Please sign in to comment.