(value: number)
| 2088 | } |
| 2089 | |
| 2090 | const setInputValue = async (value: number) => { |
| 2091 | input.value = value; |
| 2092 | dispatchEvent(input, 'input'); |
| 2093 | await fixture.whenStable(); |
| 2094 | }; |
| 2095 | const verifyValidatorAttrValues = (values: {minlength: any; maxlength: any}) => { |
| 2096 | expect(input.getAttribute('minlength')).toBe(values.minlength); |
| 2097 | expect(input.getAttribute('maxlength')).toBe(values.maxlength); |
no test coverage detected