member_webapp/@overflow/meta/component/meta-crawler-input-item.component.spec.ts

26 lines
729 B
TypeScript
Raw Normal View History

2018-06-05 11:29:35 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MetaCrawlerInputItemComponent } from './meta-crawler-input-item.component';
describe('MetaCrawlerInputItemComponent', () => {
let component: MetaCrawlerInputItemComponent;
let fixture: ComponentFixture<MetaCrawlerInputItemComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MetaCrawlerInputItemComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MetaCrawlerInputItemComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});