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