aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-04-28 17:07:28 +0200
committerNevena Bojovic <nenabojov@gmail.com>2022-04-28 17:07:28 +0200
commit8646b0f5fff359b55070362bf734af20c923a369 (patch)
tree19038cd2964c323094d93299e1a704af04cb8848 /frontend/src/app/_elements/_charts/heatmap/heatmap.component.spec.ts
parent3d10d260aea0b9faf399d009ed716191a915ade0 (diff)
Heat Map...
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.ts25
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();
+ });
+});