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

26 lines
658 B
TypeScript

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