Skip to content
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
4 changes: 2 additions & 2 deletions cypress/e2e/ui-tests/test-project-as-contributor.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe("Test project contributor user functionality", () => {
cy.get("a").contains('Create').first().click()
cy.get('input[name=name]').type(project_name)
cy.get("input[name=save]").contains('Create project').click()
cy.wait(5000) // sometimes it takes a while to create a project
cy.wait(10000) // sometimes it takes a while to create a project
.then((href) => {
cy.logf(href, Cypress.currentTest)
// Check that the app limits work using Jupyter Lab as example
Expand Down Expand Up @@ -225,7 +225,7 @@ describe("Test project contributor user functionality", () => {
cy.get('input[name=name]').type(`${project_name}-${i + 1}`);
cy.get("input[name=save]").contains('Create project').click()
});
cy.wait(5000) // sometimes it takes a while to create a project but just waiting once at the end should be enough
cy.wait(10000) // sometimes it takes a while to create a project but just waiting once at the end should be enough

// Now check that it is not possible to create another project
// not possible to click the button to create a new project
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/ui-tests/test-superuser-functionality.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ describe("Test superuser access", () => {
cy.get('input[name=name]').type(project_name)
cy.get("input[name=save]").should('be.visible').contains('Create project').click()
});
cy.wait(10000) // sometimes it takes a while to create a project but just waiting once at the end should be enough
cy.wait(15000) // sometimes it takes a while to create a project but just waiting once at the end should be enough

cy.logf("Check that it is still possible to click the button to create a new project", Cypress.currentTest)
cy.visit("/projects/")
Expand Down
Loading