diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-20 23:39:07 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-20 23:39:07 +0100 |
commit | 470442d5b7c8f034f13ed0e8d2aaafe826b40a8c (patch) | |
tree | 34336ff754da362ab121a25dcfe137a0ff704913 /frontend/src/app/scatterchart/scatterchart.component.spec.ts | |
parent | efecf70b6f54560269c3ee8211ea6456c0481e69 (diff) | |
parent | acf5c2a1e1920e158125758efda7b15232f53702 (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
Diffstat (limited to 'frontend/src/app/scatterchart/scatterchart.component.spec.ts')
-rw-r--r-- | frontend/src/app/scatterchart/scatterchart.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/scatterchart/scatterchart.component.spec.ts b/frontend/src/app/scatterchart/scatterchart.component.spec.ts new file mode 100644 index 00000000..1db81051 --- /dev/null +++ b/frontend/src/app/scatterchart/scatterchart.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ScatterchartComponent } from './scatterchart.component'; + +describe('ScatterchartComponent', () => { + let component: ScatterchartComponent; + let fixture: ComponentFixture<ScatterchartComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ScatterchartComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ScatterchartComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |