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