cic-staff-client/src/app/_interceptors/http-config.interceptor.spe...

17 lines
439 B
TypeScript

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