overflow-webapp/src/app/pages/targets/targets-page.component.spec.ts
2018-02-01 19:48:00 +09:00

26 lines
660 B
TypeScript

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