diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-04-24 18:43:14 +0200 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-04-24 18:43:14 +0200 |
commit | dbc6d56f495b2238ed1e8b6bc036b23a6067b051 (patch) | |
tree | a7365c441b87de06ee0281efc92f17a8546fba88 /frontend/src/app/_elements/_charts/doughnut-chart/doughnut-chart.component.spec.ts | |
parent | 0b38d83378e3ea03893eb60729e8bebbf9942949 (diff) |
Doughnut Chart (Varijanta Pie Chart).
Diffstat (limited to 'frontend/src/app/_elements/_charts/doughnut-chart/doughnut-chart.component.spec.ts')
-rw-r--r-- | frontend/src/app/_elements/_charts/doughnut-chart/doughnut-chart.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/_charts/doughnut-chart/doughnut-chart.component.spec.ts b/frontend/src/app/_elements/_charts/doughnut-chart/doughnut-chart.component.spec.ts new file mode 100644 index 00000000..67309670 --- /dev/null +++ b/frontend/src/app/_elements/_charts/doughnut-chart/doughnut-chart.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { DoughnutChartComponent } from './doughnut-chart.component'; + +describe('DoughnutChartComponent', () => { + let component: DoughnutChartComponent; + let fixture: ComponentFixture<DoughnutChartComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ DoughnutChartComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(DoughnutChartComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |