import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { OtherPageComponent } from './other-page.component'; describe('OtherPageComponent', () => { let component: OtherPageComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ OtherPageComponent ] }) .compileComponents(); })); });