From 053c25e3eabbe2c32ba7e5de25a169799e7165b1 Mon Sep 17 00:00:00 2001 From: ANKUR DWIVEDI Date: Mon, 27 Nov 2023 03:42:14 +0530 Subject: [PATCH] remove intercept --- cypress/e2e/IKVideo.cy.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cypress/e2e/IKVideo.cy.js b/cypress/e2e/IKVideo.cy.js index aace026..f82f4a8 100644 --- a/cypress/e2e/IKVideo.cy.js +++ b/cypress/e2e/IKVideo.cy.js @@ -3,11 +3,7 @@ describe('IKVideo Element', () => { describe('Video transformation', () => { it('should have element with transformation', () => { - cy.intercept('GET', '**/*', (req) => { - // Set the custom header - req.headers['ngrok-skip-browser-warning'] = 'true'; - }); - cy.visit(APP_HOST, { timeout: 30000 }); + cy.visit(APP_HOST); cy.get('.ikvideo-default').scrollIntoView();