import { TestBed, inject } from '@angular/core/testing'; import { ProjectService } from './project.service'; describe('ProjectService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [ProjectService] }); }); it('should be created', inject([ProjectService], (service: ProjectService) => { expect(service).toBeTruthy(); })); // FIXME SEB - add more tests, see https://angular.io/guide/http#mocking-philosophy });