import { TestBed } from '@angular/core/testing'; import { HttpInterceptorFn } from '@angular/common/http'; import { <%= camelize(name) %>Interceptor } from './<%= dasherize(name) %><%= typeSeparator %>interceptor'; describe('<%= camelize(name) %>Interceptor', () => { const interceptor: HttpInterceptorFn = (req, next) => TestBed.runInInjectionContext(() => <%= camelize(name) %>Interceptor(req, next)); beforeEach(() => { TestBed.configureTestingModule({}); }); it('should be created', () => { expect(interceptor).toBeTruthy(); }); });