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