umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
19 lines (15 loc) • 544 B
text/typescript
import { FormFieldBuilderBase } from './formFieldBuilderBase';
export class FormLongAnswerFieldBuilder extends FormFieldBuilderBase {
fieldTypeId = '023f09ac-1445-4bcb-b8fa-ab49f33bd046';
removePrevalueEditor = true;
withDefaultValue(defaultValue: string) {
// tslint:disable-next-line: no-string-literal
this.settings['DefaultValue'] = defaultValue;
return this;
}
withPlaceholder(placeholder) {
// tslint:disable-next-line: no-string-literal
this.settings['Placeholder'] = placeholder;
return this;
}
}