member_webapp/src/packages/member/component/modify/modify.component.spec.ts

26 lines
628 B
TypeScript
Raw Normal View History

2018-04-06 06:59:49 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ModifyComponent } from './modify.component';
describe('ModifyComponent', () => {
let component: ModifyComponent;
let fixture: ComponentFixture<ModifyComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ModifyComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ModifyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});