import { ComponentFixture, TestBed } from '@angular/core/testing'; import { HeatmapComponent } from './heatmap.component'; describe('HeatmapComponent', () => { let component: HeatmapComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ HeatmapComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(HeatmapComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });