mirror of
https://github.com/lyx0/noury.li.git
synced 2024-11-13 19:49:54 +01:00
17 lines
553 B
TypeScript
17 lines
553 B
TypeScript
// import * as cdk from 'aws-cdk-lib';
|
|
// import { Template } from 'aws-cdk-lib/assertions';
|
|
// import * as Cdk from '../lib/cdk-stack';
|
|
|
|
// example test. To run these tests, uncomment this file along with the
|
|
// example resource in lib/cdk-stack.ts
|
|
test('SQS Queue Created', () => {
|
|
// const app = new cdk.App();
|
|
// // WHEN
|
|
// const stack = new Cdk.CdkStack(app, 'MyTestStack');
|
|
// // THEN
|
|
// const template = Template.fromStack(stack);
|
|
|
|
// template.hasResourceProperties('AWS::SQS::Queue', {
|
|
// VisibilityTimeout: 300
|
|
// });
|
|
});
|