@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (18 loc) • 732 B
TypeScript
import { type HelmExecutionBuilder } from '../../execution/helm-execution-builder.js';
import { type HelmRequest } from '../helm-request.js';
import { type TestChartOptions } from '../../model/test/test-chart-options.js';
/**
* A request to test a Helm chart.
*/
export declare class ChartTestRequest implements HelmRequest {
readonly releaseName: string;
readonly options: TestChartOptions;
/**
* Creates a new test request with the given release name and options.
*
* @param releaseName The name of the release.
* @param options The options to use when testing the chart.
*/
constructor(releaseName: string, options?: TestChartOptions);
apply(builder: HelmExecutionBuilder): void;
}