From 511f97ce25e4b7099add25901cee7c11fef0f526 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Wed, 20 Jun 2018 13:00:06 +0100 Subject: [PATCH] clean local storage before auth test --- lib/core/services/authentication.service.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core/services/authentication.service.spec.ts b/lib/core/services/authentication.service.spec.ts index 3f68d444df..d1ef145278 100644 --- a/lib/core/services/authentication.service.spec.ts +++ b/lib/core/services/authentication.service.spec.ts @@ -37,6 +37,7 @@ describe('AuthenticationService', () => { beforeEach(() => { sessionStorage.clear(); + localStorage.clear(); apiService = TestBed.get(AlfrescoApiService); authService = TestBed.get(AuthenticationService);