UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

13 lines (11 loc) 405 B
import { DataTypeBuilder } from './dataTypeBuilder'; import { TextBoxDataType } from '../../models/dataTypes/textBoxDataType'; export class TextBoxDataTypeBuilder extends DataTypeBuilder { constructor(private textBoxDataType: TextBoxDataType = new TextBoxDataType()) { super(textBoxDataType); } withMaxChars(chars: number) { this.textBoxDataType.addPrevalues(chars); return this; } }