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

19 lines
495 B
TypeScript

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