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