hv2-all-in-one/ui/hv2-ui/src/app/auth-handler.interceptor.spec.ts

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();
});
});