Theia API Documentation v1.65.0
    Preparing search index...
    interface TestingExt {
        $onCancelTestRun(controllerId: string, runId: string): void;
        $onConfigureRunProfile(controllerId: string, profileId: string): void;
        $onDidChangeDefault(
            controllerId: string,
            profileId: string,
            isDefault: boolean,
        ): void;
        $onResolveChildren(controllerId: string, path: string[]): void;
        $onRunControllerTests(reqs: TestRunRequestDTO[]): void;
        $refreshTests(
            controllerId: string,
            token: CancellationToken,
        ): Promise<void>;
    }
    Index

    Methods

    • Parameters

      • controllerId: string
      • runId: string

      Returns void

    • Configures a test run config.

      Parameters

      • controllerId: string
      • profileId: string

      Returns void

    • Sets the default on a given run profile

      Parameters

      • controllerId: string
      • profileId: string
      • isDefault: boolean

      Returns void

    • Parameters

      • controllerId: string
      • path: string[]

      Returns void

    • Asks the controller to refresh its tests

      Parameters

      Returns Promise<void>