Theia API Documentation v1.65.0
    Preparing search index...
    interface TestService {
        isRefreshing: boolean;
        onControllersChanged: Event<CollectionDelta<string, TestController>>;
        onDidChangeIsRefreshing: Event<void>;
        cancelRefresh(): void;
        clearResults(): void;
        configureProfile(): void;
        getControllers(): TestController[];
        refresh(): void;
        registerTestController(controller: TestController): Disposable;
        runAllTests(profileKind: TestRunProfileKind): void;
        runTests(profileKind: TestRunProfileKind, tests: TestItem[]): void;
        runTestsWithProfile(tests: TestItem[]): void;
        selectDefaultProfile(): void;
    }

    Implemented by

    Index

    Properties

    isRefreshing: boolean
    onControllersChanged: Event<CollectionDelta<string, TestController>>
    onDidChangeIsRefreshing: Event<void>

    Methods