UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

14 lines (11 loc) 305 B
import { DataType } from './dataType'; import { DataTypePrevalue } from './dataTypePrevalue'; export class GridDataType extends DataType { constructor() { super(); this.selectedEditor = 'Umbraco.Grid'; } public addPrevalues(values: DataTypePrevalue[]) { this.preValues = values; } }