From 45977aa136cd22e81f62e2d8d57ca7cf1abc54ed Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Mon, 2 Aug 2021 23:23:25 +0200 Subject: [PATCH] Remove more intercepts and waits that might be blocking the test from progressing. --- tests/ui/cypress/specs/multi_user_openid_connect.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ui/cypress/specs/multi_user_openid_connect.js b/tests/ui/cypress/specs/multi_user_openid_connect.js index 355cfd87..cf8c1b21 100644 --- a/tests/ui/cypress/specs/multi_user_openid_connect.js +++ b/tests/ui/cypress/specs/multi_user_openid_connect.js @@ -194,10 +194,10 @@ describe('OpenID Connect provider with RP-Initiated logout', () => { // verify that if we reload the Krill UI we are shown the OpenID Connect // provider login page - cy.intercept({ method: 'GET', path: '/auth/login'}).as('getLoginURL') - cy.intercept({ method: 'GET', url: /^https:\/\/localhost:1818\/authorize.+/}).as('oidcLoginForm') + // cy.intercept({ method: 'GET', path: '/auth/login'}).as('getLoginURL') + // cy.intercept({ method: 'GET', url: /^https:\/\/localhost:1818\/authorize.+/}).as('oidcLoginForm') cy.visit('/') - cy.wait(['@getLoginURL', '@oidcLoginForm']) + // cy.wait(['@getLoginURL', '@oidcLoginForm']) cy.url().should('not.include', Cypress.config('baseUrl')) cy.contains('Mock OpenID Connect login form') })