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