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