syncthing/next-gen-gui/src/app/http-interceptors/caching.interceptor.spec.ts

17 lines
422 B
TypeScript
Raw Normal View History

2020-03-25 00:19:54 +01:00
import { TestBed } from '@angular/core/testing';
import { CachingInterceptor } from './caching.interceptor';
describe('CachingInterceptor', () => {
beforeEach(() => TestBed.configureTestingModule({
providers: [
CachingInterceptor
]
}));
it('should be created', () => {
const interceptor: CachingInterceptor = TestBed.inject(CachingInterceptor);
expect(interceptor).toBeTruthy();
});
});