diff --git a/marketplace-ui/src/app/shared/services/routing.query.param.service.spec.ts b/marketplace-ui/src/app/shared/services/routing.query.param.service.spec.ts index 43a9ee1c..84605e02 100644 --- a/marketplace-ui/src/app/shared/services/routing.query.param.service.spec.ts +++ b/marketplace-ui/src/app/shared/services/routing.query.param.service.spec.ts @@ -70,16 +70,10 @@ describe('RoutingQueryParamService', () => { }); it('should set isDesigner to true if session storage matches default designer viewer', () => { - // cookieService.get.and.returnValue( - // DESIGNER_SESSION_STORAGE_VARIABLE.defaultDesignerViewer - // ); expect(service.isDesignerViewer()).toBeTrue(); }); it('should listen to navigation start events', () => { - // cookieService.get.and.returnValue( - // DESIGNER_SESSION_STORAGE_VARIABLE.defaultDesignerViewer - // ); eventsSubject.next(new NavigationStart(1, 'testUrl')); expect(service.isDesignerViewer()).toBeTrue(); });