17 lines
422 B
TypeScript
17 lines
422 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ErrorInterceptor } from '@app/_helpers/error.interceptor';
|
|
|
|
describe('ErrorInterceptor', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({
|
|
providers: [
|
|
ErrorInterceptor
|
|
]
|
|
}));
|
|
|
|
it('should be created', () => {
|
|
const interceptor: ErrorInterceptor = TestBed.inject(ErrorInterceptor);
|
|
expect(interceptor).toBeTruthy();
|
|
});
|
|
});
|