1 import { TestBed } from '@angular/core/testing';
3 import { RunService } from './run.service';
4 import { HttpClientTestingModule } from '@angular/common/http/testing';
6 describe('RunService', () => {
8 TestBed.configureTestingModule({
9 imports: [HttpClientTestingModule]
12 it('should be created', () => {
13 const service: RunService = TestBed.get(RunService);
14 expect(service).toBeTruthy();