July 2018
Intermediate to advanced
420 pages
8h 46m
English
Open ./Client/src/app/pages/auth/login/login.component.spec.ts and replace the contents with the following code:
import { RouterTestingModule } from '@angular/router/testing'; import { HttpClientModule } from '@angular/common/http'; import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { FormsModule } from '@angular/forms'; // App imports import { LoginComponent } from './login.component'; import { AuthService } from '../_services/auth.service'; describe('LoginComponent', () => { let component: LoginComponent; let fixture: ComponentFixture<LoginComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ imports: [ RouterTestingModule, FormsModule, HttpClientModule ], declarations: [ ...Read now
Unlock full access