From a729d67d3ecbe78dc181b09744a263fbf96b1a8a Mon Sep 17 00:00:00 2001 From: Mihajlo Medjedovic Date: Wed, 5 Apr 2023 15:39:31 +0200 Subject: [PATCH] chore: remove /home leftovers --- src/auth/spec/verifySas9Login.spec.ts | 2 +- src/auth/spec/verifySasViyaLogin.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auth/spec/verifySas9Login.spec.ts b/src/auth/spec/verifySas9Login.spec.ts index 78f84fc..c71f595 100644 --- a/src/auth/spec/verifySas9Login.spec.ts +++ b/src/auth/spec/verifySas9Login.spec.ts @@ -17,7 +17,7 @@ describe('verifySas9Login', () => { it('should return isLoggedIn true by checking state of popup', async () => { const popup = { window: { - location: { href: serverUrl + `/SASLogon/home` }, + location: { href: serverUrl + `/SASLogon` }, document: { body: { innerText: '

You have signed in.

' } } } } as unknown as Window diff --git a/src/auth/spec/verifySasViyaLogin.spec.ts b/src/auth/spec/verifySasViyaLogin.spec.ts index f0d1d7d..dc99e32 100644 --- a/src/auth/spec/verifySasViyaLogin.spec.ts +++ b/src/auth/spec/verifySasViyaLogin.spec.ts @@ -18,7 +18,7 @@ describe('verifySasViyaLogin', () => { it('should return isLoggedIn true by checking state of popup', async () => { const popup = { window: { - location: { href: serverUrl + `/SASLogon/home` }, + location: { href: serverUrl + `/SASLogon` }, document: { body: { innerText: '

You have signed in.

' } } } } as unknown as Window