Skip to content

Commit

Permalink
Adds timeout for location check (#3893)
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn authored Sep 9, 2024
1 parent ee2e4ef commit 7bba9ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe('Login Flow', () => {

//login again
cy.contains('Re-Login').click();
cy.expectPathToBe('/assets/auth-mock/login-mock.html');
cy.expectPathToBe('/assets/auth-mock/login-mock.html', 5000);
cy.get('body').should('contain', 'Login to Luigi sample app');
cy.login('[email protected]', 'tets');
});
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-test-application/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"e2e:open:angular": "cypress open --browser chrome --e2e --config-file cypress/config/e2e-angular-app.config.js",
"e2e:open:external": "cypress open --browser chrome --e2e --config-file cypress/config/externalmf.config.js",
"e2e:open:js": "cypress open --browser chrome --e2e --config-file cypress/config/e2e-js-app.config.js",
"e2e:run:angular": "cypress run --config-file cypress/config/e2e-angular-app.config.js --browser chrome -c video=false",
"e2e:run:angular": "cypress run --config-file cypress/config/e2e-angular-app.config.js --browser chrome -c video=true",
"e2e:run:js": "cypress run --config-file cypress/config/e2e-js-app.config.js --browser chrome -c video=false",
"e2e:run:external": "cypress run --config-file cypress/config/externalmf.config.js --browser chrome -c video=false",
"buildConfig": "webpack --config webpack-generateConfig.config",
Expand Down

0 comments on commit 7bba9ab

Please sign in to comment.