member_webapp/@overflow/target/component/target-list.component.spec.ts
2018-06-21 20:10:18 +09:00

26 lines
644 B
TypeScript

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