cic-staff-client/src/app/_interceptors/connection.interceptor.spec.ts

17 lines
438 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { ConnectionInterceptor } from './connection.interceptor';
describe('ConnectionInterceptor', () => {
beforeEach(() =>
TestBed.configureTestingModule({
providers: [ConnectionInterceptor],
})
);
it('should be created', () => {
const interceptor: ConnectionInterceptor = TestBed.inject(ConnectionInterceptor);
expect(interceptor).toBeTruthy();
});
});