Files
rossa-tech/rossa-tech-cli/src/app/services/global.service.spec.ts
Peter Rossa af29efa0f3 Init app
2023-05-10 12:23:25 +02:00

17 lines
357 B
TypeScript

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();
});
});