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