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