|
|
|
@ -4,7 +4,7 @@ Cypress.on("uncaught:exception", () => { |
|
|
|
|
|
|
|
// ACCOUNTS & USERS
|
|
|
|
Cypress.Commands.add("login", (email, password) => { |
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`) |
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`, { timeout: 5000 }) |
|
|
|
cy.wait(2000) |
|
|
|
cy.url().then(url => { |
|
|
|
if (url.includes("builder/admin")) { |
|
|
|
@ -139,7 +139,9 @@ Cypress.Commands.add("createApp", (name, addDefaultTable) => { |
|
|
|
cy.get(`[data-cy="create-app-btn"]`, { timeout: 5000 }).click({ force: true }) |
|
|
|
|
|
|
|
// If apps already exist
|
|
|
|
cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`) |
|
|
|
cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`, { |
|
|
|
timeout: 5000, |
|
|
|
}) |
|
|
|
.its("body") |
|
|
|
.then(val => { |
|
|
|
if (val.length > 0) { |
|
|
|
@ -223,9 +225,11 @@ Cypress.Commands.add("deleteApp", name => { |
|
|
|
}) |
|
|
|
|
|
|
|
Cypress.Commands.add("deleteAllApps", () => { |
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`) |
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`, { timeout: 5000 }) |
|
|
|
cy.wait(500) |
|
|
|
cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`) |
|
|
|
cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`, { |
|
|
|
timeout: 5000, |
|
|
|
}) |
|
|
|
.its("body") |
|
|
|
.then(val => { |
|
|
|
for (let i = 0; i < val.length; i++) { |
|
|
|
@ -377,7 +381,7 @@ Cypress.Commands.add("searchForApplication", appName => { |
|
|
|
// Assumes there are no others
|
|
|
|
Cypress.Commands.add("applicationInAppTable", appName => { |
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`, { timeout: 10000 }) |
|
|
|
cy.get(".appTable", { timeout: 2000 }).within(() => { |
|
|
|
cy.get(".appTable", { timeout: 5000 }).within(() => { |
|
|
|
cy.get(".title").contains(appName).should("exist") |
|
|
|
}) |
|
|
|
}) |
|
|
|
|