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