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