Theia API Documentation v1.65.0
    Preparing search index...
    interface TestController {
        id: string;
        label: string;
        onItemsChanged: Event<TreeDelta<string, TestItem>[]>;
        onProfilesChanged: Event<CollectionDelta<TestRunProfile, TestRunProfile>>;
        onRunsChanged: Event<CollectionDelta<TestRun, TestRun>>;
        testRunProfiles: readonly TestRunProfile[];
        testRuns: readonly TestRun[];
        tests: readonly TestItem[];
        clearRuns(): void;
        refreshTests(token: CancellationToken): Promise<void>;
    }
    Index

    Properties

    id: string
    label: string
    onItemsChanged: Event<TreeDelta<string, TestItem>[]>
    testRunProfiles: readonly TestRunProfile[]
    testRuns: readonly TestRun[]
    tests: readonly TestItem[]

    Methods