Fixed webapp build and error message.
[src/xds/xds-agent.git] / webapp / src / app / @core-xds / services / project.service.spec.ts
1 import { TestBed, inject } from '@angular/core/testing';
2
3 import { ProjectService } from './project.service';
4
5 describe('ProjectService', () => {
6   beforeEach(() => {
7     TestBed.configureTestingModule({
8       providers: [ProjectService]
9     });
10   });
11
12   it('should be created', inject([ProjectService], (service: ProjectService) => {
13     expect(service).toBeTruthy();
14   }));
15
16   // FIXME SEB - add more tests, see https://angular.io/guide/http#mocking-philosophy
17 });