From c5ea321f25d181ced1932f5f8858edc52b80c66d Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Thu, 20 Jan 2022 11:51:41 +0000 Subject: [PATCH] fix cypress createApp command --- packages/builder/cypress/support/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/builder/cypress/support/commands.js b/packages/builder/cypress/support/commands.js index a165f7e13b..d99e2b271f 100644 --- a/packages/builder/cypress/support/commands.js +++ b/packages/builder/cypress/support/commands.js @@ -35,7 +35,7 @@ Cypress.Commands.add("login", () => { Cypress.Commands.add("createApp", name => { cy.visit(`localhost:${Cypress.env("PORT")}/builder`) cy.wait(500) - cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`) + cy.request(`${Cypress.config().baseUrl}api/applications?status=all`) .its("body") .then(body => { if (body.length > 0) {