UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

13 lines (11 loc) 303 B
import { DataType } from './dataType'; export class TextBoxDataType extends DataType { constructor() { super(); this.selectedEditor = 'Umbraco.TextBox'; this.addPrevalues(8); } public addPrevalues(maxChars: number) { this.preValues = [{ key: 'maxChars', value: maxChars }]; } }