6: Get Data from a Server
authorKai Moritz <kai@juplo.de>
Sat, 16 May 2020 10:42:55 +0000 (12:42 +0200)
committerKai Moritz <kai@juplo.de>
Sat, 16 May 2020 11:41:36 +0000 (13:41 +0200)
d) Heroes and HTTP - Get Heroes with HttpClient (Fixed Tests)

src/app/dashboard/dashboard.component.spec.ts
src/app/hero.service.spec.ts

index 9c996c3..bfadb09 100644 (file)
@@ -1,6 +1,8 @@
 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
 
 import { DashboardComponent } from './dashboard.component';
+import { HeroService  } from '../hero.service';
+import { of } from 'rxjs';
 
 describe('DashboardComponent', () => {
   let component: DashboardComponent;
@@ -8,7 +10,10 @@ describe('DashboardComponent', () => {
 
   beforeEach(async(() => {
     TestBed.configureTestingModule({
-      declarations: [ DashboardComponent ]
+      declarations: [ DashboardComponent ],
+      providers: [
+        { provide: HeroService, useValue: { getHeroes: () => of([])}}
+      ]
     })
     .compileComponents();
   }));
index 0ec21de..de1c518 100644 (file)
@@ -2,15 +2,16 @@ import { TestBed} from '@angular/core/testing';
 import { TestScheduler } from 'rxjs/testing';
 
 import { HeroService } from './hero.service';
-import { Hero } from './hero';
-import {map} from 'rxjs/operators';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
 
 describe('HeroService', () => {
   let service: HeroService;
   let scheduler: TestScheduler;
 
   beforeEach(() =>  {
-    TestBed.configureTestingModule({});
+    TestBed.configureTestingModule({
+      imports: [ HttpClientTestingModule ]
+    });
     service = TestBed.inject(HeroService);
     scheduler = new TestScheduler(((actual, expected) => {
       expect(actual).toEqual(expected);