diff --git a/lib/testing/src/lib/core/pages/login.page.ts b/lib/testing/src/lib/core/pages/login.page.ts index abd59b7105..5c824a70c7 100644 --- a/lib/testing/src/lib/core/pages/login.page.ts +++ b/lib/testing/src/lib/core/pages/login.page.ts @@ -59,7 +59,7 @@ export class LoginPage { const authType = await LocalStorageUtil.getConfigField('authType'); const oauth: any = await LocalStorageUtil.getConfigField('oauth2'); - if ((!authType || authType === 'OAUTH') && oauth?.implicitFlow) { + if (!authType || authType === 'OAUTH') { await this.loginSSOIdentityService(username, password); } else { await this.loginBasicAuth(username, password);