TG-2 TG-9 - Push base Angular app

This commit is contained in:
2024-11-03 11:16:14 +01:00
parent cd590d21d9
commit 68d4b82756
36 changed files with 879 additions and 441 deletions

View File

@@ -0,0 +1,16 @@
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();
});
});