cd-force
Version:
Form creation goodness.
26 lines (20 loc) • 614 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PullComponent } from './pull.component';
describe('PullComponent', () => {
let component: PullComponent;
let fixture: ComponentFixture<PullComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ PullComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PullComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});