import { TestBed, inject } from '@angular/core/testing'; import { ComputesitesService } from './computesites.service'; describe('ComputesitesService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [ComputesitesService] }); }); it('should be created', inject([ComputesitesService], (service: ComputesitesService) => { expect(service).toBeTruthy(); })); });