interface TestItemDTO {
    busy: boolean;
    canResolveChildren: boolean;
    children?: TestItemDTO[];
    description?: string;
    error?: string | MarkdownString;
    id: string;
    label: string;
    range?: Range;
    sortKey?: string;
    tags: string[];
    uri?: UriComponents;
}

Properties

busy: boolean
canResolveChildren: boolean
children?: TestItemDTO[]
description?: string
error?: string | MarkdownString
id: string
label: string
range?: Range
sortKey?: string
tags: string[]
uri?: UriComponents