Theia API Documentation v1.65.0
    Preparing search index...
    interface TestingMain {
        $notifyDelta(
            controllerId: string,
            diff: TreeDelta<string, TestItemDTO>[],
        ): void;
        $notifyTestRunCreated(
            controllerId: string,
            run: TestRunDTO,
            preserveFocus: boolean,
        ): void;
        $notifyTestRunEnded(controllerId: string, runId: string): void;
        $notifyTestRunProfileCreated(
            controllerId: string,
            profile: TestRunProfileDTO,
        ): void;
        $notifyTestStateChanged(
            controllerId: string,
            runId: string,
            stateChanges: TestStateChangeDTO[],
            outputChanges: TestOutputDTO[],
        ): void;
        $registerTestController(controllerId: string, label: string): void;
        $removeTestRunProfile(controllerId: string, profileId: string): void;
        $unregisterTestController(controllerId: string): void;
        $updateController(
            controllerId: string,
            patch: Partial<TestControllerUpdate>,
        ): void;
        $updateTestRunProfile(
            controllerId: string,
            profileId: string,
            update: Partial<TestRunProfileDTO>,
        ): void;
    }

    Implemented by

    Index

    Methods