projen
Version:
CDK for software projects
15 lines (14 loc) • 437 B
TypeScript
import type { IntegrationTestBaseOptions } from "../cdk";
import { IntegrationTestBase } from "../cdk";
import type { Project } from "../project";
/**
* Options for IntegrationTest
*/
export interface IntegrationTestOptions extends IntegrationTestBaseOptions {
}
/**
* CDK8S integration test.
*/
export declare class IntegrationTest extends IntegrationTestBase {
constructor(project: Project, options: IntegrationTestOptions);
}