member_webapp/@overflow/meta/component/meta-crawler-input-item.component.spec.ts
crusader 27b3490d39 ing
2018-06-05 20:29:35 +09:00

26 lines
729 B
TypeScript

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();
});
});