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