You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
404B

  1. import { TestBed } from '@angular/core/testing';
  2. import { AuthInterceptor } from './auth.interceptor';
  3. describe('AuthInterceptor', () => {
  4. beforeEach(() => TestBed.configureTestingModule({
  5. providers: [
  6. AuthInterceptor
  7. ]
  8. }));
  9. it('should be created', () => {
  10. const interceptor: AuthInterceptor = TestBed.inject(AuthInterceptor);
  11. expect(interceptor).toBeTruthy();
  12. });
  13. });