本文整理匯總了TypeScript中@angular/forms.AbstractControl.default方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript AbstractControl.default方法的具體用法?TypeScript AbstractControl.default怎麽用?TypeScript AbstractControl.default使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@angular/forms.AbstractControl
的用法示例。
在下文中一共展示了AbstractControl.default方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('validates ratio to be only valid between 0 and 1', () => {
isValid(form.get('ratio'));
hasError(setValue('ratio', -0.1), 'min');
isValid(setValue('ratio', 0));
isValid(setValue('ratio', 1));
hasError(setValue('ratio', 1.1), 'max');
});
示例2: setValue
const setPgNum = (pgs): AbstractControl => {
setValue('poolType', 'erasure');
const control = setValue('pgNum', pgs);
fixture.detectChanges();
fixture.debugElement.query(By.css('#pgNum')).nativeElement.dispatchEvent(new Event('blur'));
return control;
};
示例3: it
it('validates pgNum in creation mode', () => {
formHelper.expectError(form.get('pgNum'), 'required');
formHelper.setValue('poolType', 'erasure');
formHelper.expectValid(setPgNum(-28));
expect(form.getValue('pgNum')).toBe(1);
formHelper.expectValid(setPgNum(15));
expect(form.getValue('pgNum')).toBe(16);
});
示例4: beforeEach
beforeEach(() => {
setValue('crushRule', {
min_size: 1,
max_size: 20
});
component.ngOnInit();
// triggers pgUpdate
setPgNum(256);
});
示例5: setPgNum
const testPgUpdate = (pgs, jump, returnValue) => {
if (pgs) {
setPgNum(pgs);
}
if (jump) {
setPgNum(form.getValue('pgNum') + jump);
}
expect(form.getValue('pgNum')).toBe(returnValue);
};