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