This commit is contained in:
Peter Rossa
2023-05-10 12:23:25 +02:00
commit af29efa0f3
131 changed files with 16889 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { GlobalService } from './global.service';
describe('GlobalService', () => {
let service: GlobalService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(GlobalService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});