add http interceptor

This commit is contained in:
Peter Maquiran
2023-07-11 17:54:08 +01:00
parent 12178d6c3a
commit 9b690c3848
7 changed files with 118 additions and 38 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { LoggingInterceptorService } from './logging-interceptor.service';
describe('LoggingInterceptorService', () => {
let service: LoggingInterceptorService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LoggingInterceptorService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});