19 lines
444 B
TypeScript
19 lines
444 B
TypeScript
import { TestBed } from '@angular/core/testing'
|
|
|
|
import { ApiVersionInterceptor } from './api-version.interceptor'
|
|
|
|
describe('ApiVersionInterceptor', () => {
|
|
beforeEach(() =>
|
|
TestBed.configureTestingModule({
|
|
providers: [ApiVersionInterceptor],
|
|
})
|
|
)
|
|
|
|
it('should be created', () => {
|
|
const interceptor: ApiVersionInterceptor = TestBed.inject(
|
|
ApiVersionInterceptor
|
|
)
|
|
expect(interceptor).toBeTruthy()
|
|
})
|
|
})
|