UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

13 lines (11 loc) 305 B
import { DataType } from './dataType'; export class FormPickerDataType extends DataType { constructor() { super(); this.selectedEditor = 'UmbracoForms.FormPicker'; this.addPrevalues([]); } public addPrevalues(value: any[]) { this.preValues = [{ key: 'allowedForms', value }]; } }