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