17 lines
447 B
TypeScript
17 lines
447 B
TypeScript
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { AuthHandlerInterceptor } from './auth-handler.interceptor';
|
||
|
|
||
|
describe('AuthHandlerInterceptor', () => {
|
||
|
beforeEach(() => TestBed.configureTestingModule({
|
||
|
providers: [
|
||
|
AuthHandlerInterceptor
|
||
|
]
|
||
|
}));
|
||
|
|
||
|
it('should be created', () => {
|
||
|
const interceptor: AuthHandlerInterceptor = TestBed.inject(AuthHandlerInterceptor);
|
||
|
expect(interceptor).toBeTruthy();
|
||
|
});
|
||
|
});
|