Skip to content
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

Adds timeout for location check #3893

Merged
merged 2 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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