diff options
| author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-19 19:52:24 +0200 |
|---|---|---|
| committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-19 19:52:24 +0200 |
| commit | ef2d19d05517ab82c4ce65815bba19c9c343750e (patch) | |
| tree | 0a851fd31162441f61ff7ce3486bd552f75c38ba /frontend/src/app/_elements/line-chart/line-chart.component.spec.ts | |
| parent | f21885e7cbb68ef444ff9efc27483e2036e26bb0 (diff) | |
| parent | 9c0b48ed66e363928e8970f9b328c0bb3eee6c2d (diff) | |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
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(); + }); +}); |
