diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 21:30:38 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 21:30:38 +0200 |
commit | 18845d3264a49b933b0f2062538771deb906e3ee (patch) | |
tree | 498ba6331e4e99dc29a75d659d81926d18f3016a /frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts | |
parent | d2a4ea35188e62a9885a9ceb2361ad1c7d66e930 (diff) | |
parent | 8646b0f5fff359b55070362bf734af20c923a369 (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts')
-rw-r--r-- | frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts b/frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts new file mode 100644 index 00000000..fa0a90cc --- /dev/null +++ b/frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HeatmapComponent } from './heatmap.component'; + +describe('HeatmapComponent', () => { + let component: HeatmapComponent; + let fixture: ComponentFixture<HeatmapComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ HeatmapComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(HeatmapComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |