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