TestWorkerUpdate: {
    borderBottom?: boolean;
    borderLeft?: boolean;
    borderRight?: boolean;
    borderTop?: boolean;
    frozen?: boolean;
    label?: string;
    location?: {
        column?: "default" | number;
        insertMode?: TestInsertMode;
        row?: number;
    };
    userDefinedVisible?: boolean;
    width?: number;
}

Type declaration

  • OptionalborderBottom?: boolean

    Change whether or not there is a bottom border.

  • OptionalborderLeft?: boolean

    Change whether or not there is a left border.

  • OptionalborderRight?: boolean

    Change whether or not there is a right border.

  • OptionalborderTop?: boolean

    Change whether or not there is a top border.

  • Optionalfrozen?: boolean

    Change whether a test is frozen in place.

  • Optionallabel?: string

    Change the text that accompanies the test.

  • Optionallocation?: {
        column?: "default" | number;
        insertMode?: TestInsertMode;
        row?: number;
    }

    Contains properties to change the location of the test.

    • Optionalcolumn?: "default" | number

      Change the column a test is in, between 0 and 11.

    • OptionalinsertMode?: TestInsertMode

      If set to 'insertIntoNewRow', the test will be inserted in a new row at the given row index. If set to 'appendToExistingRow' the test will be appended to the existing row at the given row index. Defaults to 'insertIntoNewRow'.

    • Optionalrow?: number

      Change the row a test is in. If not specified, the last row index will be used.

  • OptionaluserDefinedVisible?: boolean

    Change whether a test can be seen. Invisible tests are treated the same as visible tests.

  • Optionalwidth?: number

    Change the number of columns the test occupies. The minimum width for a test is defined by minWidth, and the max width is 12.