Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
It is all in the timing
  • Loading branch information
rstens committed Nov 19, 2021
commit 1ffaa9539b10a515ef658687c9cb4f499de93776
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import * as faker from "faker";

export function navigate_project() {
// Create project
cy.wait(5000);
cy.visit("/admin/projects/create");
cy.wait(5000);
cy.get("h1").contains("Create Project").should("be.visible");
}

// Add Coordinator takes variables or when omitted (NULL), it will use fake data)
Expand Down
1 change: 0 additions & 1 deletion testing/e2e/cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Cypress.Commands.overwrite('login', (originalFn) => {
client_id: Cypress.env("authClientId"),
redirect_uri: Cypress.env("host"),
})
cy.wait(3000);
})

Cypress.Commands.overwrite('logout', (originalFn) => {
Expand Down