import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ErrorPageComponent } from './error-page.component'; describe('ErrorPageComponent', () => { let component: ErrorPageComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ErrorPageComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ErrorPageComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });