@aws-cdk-testing/cli-integ
Version:
Integration tests for the AWS CDK CLI
15 lines (11 loc) • 542 B
text/typescript
import { integTest, withTemporaryDirectory, ShellHelper, withPackages } from '../../lib';
['app', 'sample-app'].forEach(template => {
integTest(`init java ${template}`, withTemporaryDirectory(withPackages(async (context) => {
context.packages.assertJsiiPackagesAvailable();
const shell = ShellHelper.fromContext(context);
await context.packages.makeCliAvailable();
await shell.shell(['cdk', 'init', '-l', 'java', template]);
await shell.shell(['mvn', 'package']);
await shell.shell(['cdk', 'synth']);
})));
});