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