moved to single project

This commit is contained in:
2021-08-02 16:52:31 +02:00
commit 4f8b3ce8f3
89 changed files with 16070 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ErrorHandlerInterceptor } from './error-handler.interceptor';
describe('ErrorHandlerInterceptor', () => {
beforeEach(() => TestBed.configureTestingModule({
providers: [
ErrorHandlerInterceptor
]
}));
it('should be created', () => {
const interceptor: ErrorHandlerInterceptor = TestBed.inject(ErrorHandlerInterceptor);
expect(interceptor).toBeTruthy();
});
});