@aws-cdk-testing/cli-integ
Version:
Integration tests for the AWS CDK CLI
15 lines (10 loc) • 462 B
text/typescript
import { fromStackCreatesDeployableApp } from "./testcase";
import { integTest, withExtendedTimeoutFixture } from "../../../lib";
const language = 'java';
jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime
integTest(
`cdk migrate --from-stack creates deployable ${language} app`,
withExtendedTimeoutFixture(async (fixture) => {
await fromStackCreatesDeployableApp(fixture, language);
}),
);