8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { CustomHttpInterceptor } from './custom-http-interceptor';
|
|
|
|
describe('CustomHttpInterceptor', () => {
|
|
it('should create an instance', () => {
|
|
expect(new CustomHttpInterceptor()).toBeTruthy();
|
|
});
|
|
});
|