4: Add Services
[examples/angular-tour-of-heroes] / src / app / hero.service.spec.ts
1 import { TestBed } from '@angular/core/testing';
2
3 import { HeroService } from './hero.service';
4
5 describe('HeroService', () => {
6   beforeEach(() => TestBed.configureTestingModule({}));
7
8   it('should be created', () => {
9     const service: HeroService = TestBed.get(HeroService);
10     expect(service).toBeTruthy();
11   });
12 });