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