member_webapp/@overflow/member/container/member-reset-password-container.component.spec.ts
2018-05-28 19:28:26 +09:00

26 lines
708 B
TypeScript

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