本文整理汇总了TypeScript中app/account/password-reset/finish/password-reset-finish.component.PasswordResetFinishComponent类的典型用法代码示例。如果您正苦于以下问题:TypeScript component.PasswordResetFinishComponent类的具体用法?TypeScript component.PasswordResetFinishComponent怎么用?TypeScript component.PasswordResetFinishComponent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了component.PasswordResetFinishComponent类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: beforeEach
beforeEach(() => {
fixture = TestBed.createComponent(PasswordResetFinishComponent);
comp = fixture.componentInstance;
comp.ngOnInit();
});
开发者ID:fleko24,项目名称:MSkate,代码行数:5,代码来源:password-reset-finish.component.spec.ts
示例2: describe
describe('PasswordResetFinishComponent', () => {
let fixture: ComponentFixture<PasswordResetFinishComponent>;
let comp: PasswordResetFinishComponent;
beforeEach(() => {
fixture = TestBed.configureTestingModule({
imports: [MegaskateManagerTestModule],
declarations: [PasswordResetFinishComponent],
providers: [
{
provide: ActivatedRoute,
useValue: new MockActivatedRoute({ key: 'XYZPDQ' })
},
{
provide: Renderer,
useValue: {
invokeElementMethod(renderElement: any, methodName: string, args?: any[]) {}
}
},
{
provide: ElementRef,
useValue: new ElementRef(null)
}
]
})
.overrideTemplate(PasswordResetFinishComponent, '')
.createComponent(PasswordResetFinishComponent);
});
beforeEach(() => {
fixture = TestBed.createComponent(PasswordResetFinishComponent);
comp = fixture.componentInstance;
comp.ngOnInit();
});
it('should define its initial state', () => {
comp.ngOnInit();
expect(comp.keyMissing).toBeFalsy();
expect(comp.key).toEqual('XYZPDQ');
expect(comp.resetAccount).toEqual({});
});
it(
'sets focus after the view has been initialized',
inject([ElementRef], (elementRef: ElementRef) => {
const element = fixture.nativeElement;
const node = {
focus() {}
};
elementRef.nativeElement = element;
spyOn(element, 'querySelector').and.returnValue(node);
spyOn(node, 'focus');
comp.ngAfterViewInit();
expect(element.querySelector).toHaveBeenCalledWith('#password');
expect(node.focus).toHaveBeenCalled();
})
);
it('should ensure the two passwords entered match', () => {
comp.resetAccount.password = 'password';
comp.confirmPassword = 'non-matching';
comp.finishReset();
expect(comp.doNotMatch).toEqual('ERROR');
});
it(
'should update success to OK after resetting password',
inject(
[PasswordResetFinishService],
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(of({}));
comp.resetAccount.password = 'password';
comp.confirmPassword = 'password';
comp.finishReset();
tick();
expect(service.save).toHaveBeenCalledWith({
key: 'XYZPDQ',
newPassword: 'password'
});
expect(comp.success).toEqual('OK');
})
)
);
it(
'should notify of generic error',
inject(
[PasswordResetFinishService],
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(throwError('ERROR'));
//.........这里部分代码省略.........
开发者ID:fleko24,项目名称:MSkate,代码行数:101,代码来源:password-reset-finish.component.spec.ts
示例3: fakeAsync
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(of({}));
comp.resetAccount.password = 'password';
comp.confirmPassword = 'password';
comp.finishReset();
tick();
expect(service.save).toHaveBeenCalledWith({
key: 'XYZPDQ',
newPassword: 'password'
});
expect(comp.success).toEqual('OK');
})
开发者ID:fleko24,项目名称:MSkate,代码行数:15,代码来源:password-reset-finish.component.spec.ts
示例4: inject
inject([ElementRef], (elementRef: ElementRef) => {
const element = fixture.nativeElement;
const node = {
focus() {}
};
elementRef.nativeElement = element;
spyOn(element, 'querySelector').and.returnValue(node);
spyOn(node, 'focus');
comp.ngAfterViewInit();
expect(element.querySelector).toHaveBeenCalledWith('#password');
expect(node.focus).toHaveBeenCalled();
})
开发者ID:fleko24,项目名称:MSkate,代码行数:15,代码来源:password-reset-finish.component.spec.ts
示例5: fakeAsync
fakeAsync((service: PasswordResetFinishService) => {
spyOn(service, 'save').and.returnValue(throwError('ERROR'));
comp.passwordForm.patchValue({
newPassword: 'password',
confirmPassword: 'password'
});
comp.finishReset();
tick();
expect(service.save).toHaveBeenCalledWith({
key: 'XYZPDQ',
newPassword: 'password'
});
expect(comp.success).toBeNull();
expect(comp.error).toEqual('ERROR');
})
开发者ID:jbbfreitas,项目名称:BestMeal,代码行数:17,代码来源:password-reset-finish.component.spec.ts
示例6: it
it('should define its initial state', () => {
comp.ngOnInit();
expect(comp.keyMissing).toBeFalsy();
expect(comp.key).toEqual('XYZPDQ');
});
开发者ID:jbbfreitas,项目名称:BestMeal,代码行数:6,代码来源:password-reset-finish.component.spec.ts
注:本文中的app/account/password-reset/finish/password-reset-finish.component.PasswordResetFinishComponent类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论