jb-api-aws/test/jb-api-aws.test.ts
2026-01-08 16:47:33 -06:00

17 lines
618 B
TypeScript

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