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