syncthing/next-gen-gui/src/app/charts/donut-chart/donut-chart.component.spec.ts

22 lines
587 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DonutChartComponent } from './donut-chart.component';
import { HttpClientModule } from '@angular/common/http';
describe('DonutChartComponent', () => {
let component: DonutChartComponent;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [DonutChartComponent],
providers: [DonutChartComponent]
}).compileComponents();
component = TestBed.inject(DonutChartComponent);
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});