TestWorkerGet: {
    borderBottom: boolean;
    borderLeft: boolean;
    borderRight: boolean;
    borderTop: boolean;
    frozen: boolean;
    label: string;
    location: {
        column: number;
        row: number;
    };
    minWidth: number;
    userDefinedVisible: boolean;
    visible: boolean;
    width: number;
}

Type declaration

  • borderBottom: boolean

    Whether or not there is a bottom border.

  • borderLeft: boolean

    Whether or not there is a left border.

  • borderRight: boolean

    Whether or not there is a right border.

  • borderTop: boolean

    Whether or not there is a top border.

  • frozen: boolean

    Frozen tests scroll alongside taller tests they are next to.

  • label: string

    The text that accompanies the test.

  • location: {
        column: number;
        row: number;
    }

    Contains the row and column of the test.

    • column: number

      The column a test is in, between 0 and 11.

    • row: number

      The row a test is in.

  • minWidth: number

    The minimum number of columns a test is allowed to occupy.

  • userDefinedVisible: boolean

    Determines whether the user has checked the 'visible' box when setting up the UI. It is possible for other factors to cause a test to render or not.

  • visible: boolean

    Determines whether a test is actually rendered. Tests which are not visible are treated the same as tests which are visible.

  • width: number

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