0
私は、テキストの長さ、このフォームのユニットテストケースを作成する方法を角反応型のカスタムバリデーターのための単体テストケースを書くには?
export function maxTextLength(length: string) {
return function (control: FormControl) {
const maxLenghtAllowed: number = +length;
let value: string = control.value;
if (value !== '' && value != null) {
value = value.trim();
}
if (value != null && value.length > maxLenghtAllowed) {
return { maxTextLength: true };
}else {
return null;
}
}
}
を検証するためのカスタムモデル駆動型フォームのバリデータを持っていますか?