Skip to content

Commit

Permalink
Increase default timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mike10ca committed Oct 5, 2023
1 parent 6d60f80 commit 2d11fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default defineConfig({
baseUrl: 'http://localhost:3000',
testIsolation: false,
hideXHR: true,
defaultCommandTimeout: 10000,
},

chromeWebSecurity: false,
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/pages/create_wallet.pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function typeWalletName(name) {
}

export function selectNetwork(network, regex = false) {
cy.get(selectNetworkBtn).click()
cy.get(selectNetworkBtn).click({ force: true })
cy.get('li').contains(network).click()

if (regex) {
Expand Down

0 comments on commit 2d11fa8

Please sign in to comment.