diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-19 17:57:17 +0200 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-19 18:11:40 +0200 |
commit | 9c0b48ed66e363928e8970f9b328c0bb3eee6c2d (patch) | |
tree | 43f1ab277952eb08f78e8d181ac20f13cbe929d7 /frontend/src/app/_elements/line-chart/line-chart.component.spec.ts | |
parent | 57d9a0b2d52d736e76025637febbb5dd3b65dc92 (diff) |
Dodate su komponente za grafik.
Diffstat (limited to 'frontend/src/app/_elements/line-chart/line-chart.component.spec.ts')
-rw-r--r-- | frontend/src/app/_elements/line-chart/line-chart.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/line-chart/line-chart.component.spec.ts b/frontend/src/app/_elements/line-chart/line-chart.component.spec.ts new file mode 100644 index 00000000..0c5e7ef5 --- /dev/null +++ b/frontend/src/app/_elements/line-chart/line-chart.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { LineChartComponent } from './line-chart.component'; + +describe('LineChartComponent', () => { + let component: LineChartComponent; + let fixture: ComponentFixture<LineChartComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ LineChartComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(LineChartComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |