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