diff --git a/lib/core/src/lib/auth/services/custom-auth-storage.service.spec.ts b/lib/core/src/lib/auth/services/custom-auth-storage.service.spec.ts index 54cd78bb52..c2e3244551 100644 --- a/lib/core/src/lib/auth/services/custom-auth-storage.service.spec.ts +++ b/lib/core/src/lib/auth/services/custom-auth-storage.service.spec.ts @@ -25,18 +25,11 @@ describe('CustomAuthStorageService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [ - CustomAuthStorageService, - { provide: CUSTOM_AUTH_STORAGE_PREFIX, useValue: of('custom-prefix') } - ] + providers: [CustomAuthStorageService, { provide: CUSTOM_AUTH_STORAGE_PREFIX, useValue: of('custom-prefix') }] }); service = TestBed.inject(CustomAuthStorageService); }); - it('should be created', () => { - expect(service).toBeTruthy(); - }); - it('should set the prefix from the observable', () => { const expectedPrefix = 'custom-prefix_'; expect(service.prefix).toBe(expectedPrefix);