Theia API Documentation v1.65.0
    Preparing search index...
    interface TestItem {
        busy: boolean;
        canResolveChildren: boolean;
        controller: undefined | TestController;
        description?: string;
        error?: string | MarkdownString;
        id: string;
        label: string;
        parent: undefined | TestItem;
        path: string[];
        range?: Range;
        sortKey?: string;
        tags: string[];
        tests: readonly TestItem[];
        uri?: URI;
        resolveChildren(): void;
    }

    Implemented by

    Index

    Properties

    busy: boolean
    canResolveChildren: boolean
    controller: undefined | TestController
    description?: string
    error?: string | MarkdownString
    id: string
    label: string
    parent: undefined | TestItem
    path: string[]
    range?: Range
    sortKey?: string
    tags: string[]
    tests: readonly TestItem[]
    uri?: URI

    Methods