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