17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { AuthInterceptorService } from './auth-interceptor.service';
|
|
|
|
describe('AuthInterceptorService', () => {
|
|
let service: AuthInterceptorService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(AuthInterceptorService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|