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