July 2018
Intermediate to advanced
420 pages
8h 46m
English
Open ./Client/src/app/pages/home/home.component.spec.ts and replace the contents with the following code:
import { TestBed , async, ComponentFixture } from '@angular/core/testing'; import { RouterTestingModule } from '@angular/router/testing'; // App imports import { HomeComponent } from './home.component'; describe('HomeComponent', () => { let component: HomeComponent; let fixture: ComponentFixture<HomeComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [ RouterTestingModule ], declarations: [ HomeComponent ] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(HomeComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () ...Read now
Unlock full access