AutoBE
    Preparing search index...

    Interface IAutoBeTestRuntimeWorkspace

    Reusable executable workspace for Test-phase runtime validation.

    interface IAutoBeTestRuntimeWorkspace {
        cwd: string;
        dispose(): Promise<void>;
        execute(
            config?: IAutoBeRealizeTestConfig,
        ): Promise<IAutoBeRealizeTestResult>;
        patch(files: Record<string, string>): Promise<void>;
        rebuild(options?: IRebuildOptions): Promise<void>;
    }
    Index

    Properties

    Methods

    Properties

    cwd: string

    Methods

    • Applies generated file changes into the existing runtime workspace.

      Parameters

      • files: Record<string, string>

      Returns Promise<void>