cdkinfracode/aws_cdk/test/aws_cdk.test.ts

17 lines
575 B
TypeScript

// import * as cdk from 'aws-cdk-lib/core';
// import { Template } from 'aws-cdk-lib/assertions';
// import * as AwsCdk from '../lib/aws_cdk-stack';
// example test. To run these tests, uncomment this file along with the
// example resource in lib/aws_cdk-stack.ts
test('SQS Queue Created', () => {
// const app = new cdk.App();
// // WHEN
// const stack = new AwsCdk.AwsCdkStack(app, 'MyTestStack');
// // THEN
// const template = Template.fromStack(stack);
// template.hasResourceProperties('AWS::SQS::Queue', {
// VisibilityTimeout: 300
// });
});