diff --git a/frontend/cypress.json b/frontend/cypress.json index 2cd56f1f..0813c747 100644 --- a/frontend/cypress.json +++ b/frontend/cypress.json @@ -10,8 +10,8 @@ }, "baseUrl": "http://localhost:8888", "chromeWebSecurity": false, - "defaultCommandTimeout": 15000, - "requestTimeout": 15000, + "defaultCommandTimeout": 30000, + "requestTimeout": 30000, "watchForFileChanges": false, "failOnStatusCode": false } diff --git a/frontend/cypress/integration/0_setup_spec.js b/frontend/cypress/integration/0_setup_spec.js index 78c91af7..ef5a2931 100644 --- a/frontend/cypress/integration/0_setup_spec.js +++ b/frontend/cypress/integration/0_setup_spec.js @@ -25,4 +25,11 @@ context('Setup Process', () => { cy.get('.group_header').should('have.length', 2) }) + it('should be completely setup', () => { + cy.request(`/api`).then((response) => { + expect(response.body).to.have.property('setup', true) + expect(response.body).to.have.property('domain', 'http://localhost:8888') + }) + }) + })