InputTestWorkerGet: {
    multiline: boolean;
    options?: InputTestEntity[];
    useSearchableSelect: boolean;
    value: string | number | undefined;
} & ValueTestWorkerGet

Type declaration

  • multiline: boolean

    Whether or not to display the input area as a multiline text box.

    If options are set, this property will have no effect.

  • Optionaloptions?: InputTestEntity[]

    The currently set options.

    If the options are set, the input will become a select.

  • useSearchableSelect: boolean

    Whether the list will use a searchable select instead of displaying options normally.

    If true, this test will fire the onPaginate event, and will expect it to resolve to a ListApiResponse.

  • value: string | number | undefined

    The entered or selected value of the test.

    When using .options, the value is the id of the option selected.

    The value will be undefined if no value is set.