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