From d5d092e9c198ae88ac28d8fce1b815cbde8a51cb Mon Sep 17 00:00:00 2001 From: asthamohta Date: Thu, 19 Dec 2024 19:37:58 +0000 Subject: [PATCH] change --- ui/cypress/e2e/spec.cy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/cypress/e2e/spec.cy.ts b/ui/cypress/e2e/spec.cy.ts index 08a9a65f1..41295e792 100644 --- a/ui/cypress/e2e/spec.cy.ts +++ b/ui/cypress/e2e/spec.cy.ts @@ -8,6 +8,7 @@ describe('template spec', () => { cy.intercept('GET', `${url}/GetSessions`, { statusCode: 200, body: [] }).as('getSessions'); cy.intercept('GET', `${url}/GetConfig`, { statusCode: 200 }).as('getConfig'); cy.intercept('GET', `${url}/GetLatestSessionDetails`, { statusCode: 200 }).as('getLatestSessionDetails'); + cy.intercept('GET', `${url}/IsConfigSet`, { statusCode: 200, body: true }).as('IsConfigSet'); cy.visit('http://localhost:4200/'); });