member_webapp/@overflow/target/component/target-list.component.spec.ts

26 lines
644 B
TypeScript
Raw Normal View History

2018-04-19 09:39:15 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2018-06-21 11:10:18 +00:00
import { TargetListComponent } from './list.component';
2018-04-19 09:39:15 +00:00
describe('ListComponent', () => {
2018-06-21 11:10:18 +00:00
let component: TargetListComponent;
let fixture: ComponentFixture<TargetListComponent>;
2018-04-19 09:39:15 +00:00
beforeEach(async(() => {
TestBed.configureTestingModule({
2018-06-21 11:10:18 +00:00
declarations: [ TargetListComponent ]
2018-04-19 09:39:15 +00:00
})
.compileComponents();
}));
beforeEach(() => {
2018-06-21 11:10:18 +00:00
fixture = TestBed.createComponent(TargetListComponent);
2018-04-19 09:39:15 +00:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});