Files
doneit-web/src/app/services/logging-interceptor.service.spec.ts
T
2023-07-11 17:54:08 +01:00

17 lines
418 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { LoggingInterceptorService } from './logging-interceptor.service';
describe('LoggingInterceptorService', () => {
let service: LoggingInterceptorService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LoggingInterceptorService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});