ng-implementation/my-workspace/projects/sae-lib/services/shared-service.spec.ts
2025-09-22 09:57:46 +02:00

16 lines
357 B
TypeScript

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