mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
17 lines
404 B
TypeScript
17 lines
404 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { AuthInterceptor } from './auth.interceptor';
|
|
|
|
describe('AuthInterceptor', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({
|
|
providers: [
|
|
AuthInterceptor
|
|
]
|
|
}));
|
|
|
|
it('should be created', () => {
|
|
const interceptor: AuthInterceptor = TestBed.inject(AuthInterceptor);
|
|
expect(interceptor).toBeTruthy();
|
|
});
|
|
});
|