Skip to content

Commit

Permalink
added wait at clear wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
Rampraesath committed Jul 5, 2023
1 parent 1c7fa27 commit 2f70fc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ context("Wallet - Network detail screen - outside wallet context", () => {
beforeEach(() => {
cy.visit("/");
cy.exitWallet();
cy.wait(4000);
cy.wait(3000);
cy.getByTestID("get_started_button").should("be.visible").click();
cy.getByTestID("guidelines_check").click();
cy.url().should("include", "wallet/onboarding/guidelines");
Expand Down
1 change: 1 addition & 0 deletions mobile-app/cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ Cypress.Commands.add("closeOceanInterface", (pin?: string) => {
});

Cypress.Commands.add("exitWallet", () => {
cy.wait(4000);
cy.getByTestID("playground_wallet_clear").click();
});

Expand Down

0 comments on commit 2f70fc8

Please sign in to comment.