cic-staff-client/src/app/_interceptors/logging.interceptor.spec.ts
2021-05-12 09:16:38 +03:00

19 lines
476 B
TypeScript

// Core imports
import { TestBed } from '@angular/core/testing';
// Application imports
import { LoggingInterceptor } from '@app/_interceptors/logging.interceptor';
describe('LoggingInterceptor', () => {
beforeEach(() =>
TestBed.configureTestingModule({
providers: [LoggingInterceptor],
})
);
it('should be created', () => {
const interceptor: LoggingInterceptor = TestBed.inject(LoggingInterceptor);
expect(interceptor).toBeTruthy();
});
});