From a46804dd9f265911d7bea79394fc555896db7a7d Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Mon, 18 Nov 2024 10:26:50 +0100 Subject: [PATCH] OZG-4310 CR --- alfa-client/apps/admin/src/app/app.component.spec.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/alfa-client/apps/admin/src/app/app.component.spec.ts b/alfa-client/apps/admin/src/app/app.component.spec.ts index 81cfebc5eb..95dadc3ebd 100644 --- a/alfa-client/apps/admin/src/app/app.component.spec.ts +++ b/alfa-client/apps/admin/src/app/app.component.spec.ts @@ -132,7 +132,7 @@ describe('AppComponent', () => { expect(apiRootService.getApiRoot).toHaveBeenCalled(); }); - it('should call removeAuthenticationParams', () => { + it('should call forwardWithoutAuthenticationParams', () => { component.forwardWithoutAuthenticationParams = jest.fn(); component.doAfterLoggedIn(); @@ -205,15 +205,15 @@ describe('AppComponent', () => { }); describe('build version', () => { - it('should not be rendered if api root not loaded', () => { - notExistsAsHtmlElement(fixture, buildInfoSelector); + it('should not be rendered if api root not loaded', () => { + notExistsAsHtmlElement(fixture, buildInfoSelector); }); it('should show after apiRoot loaded', () => { - component.apiRootStateResource$ = of(createStateResource(createApiRootResource())); + component.apiRootStateResource$ = of(createStateResource(createApiRootResource())); fixture.detectChanges(); - existsAsHtmlElement(fixture, buildInfoSelector); + existsAsHtmlElement(fixture, buildInfoSelector); }); }); -- GitLab