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