Testing
After you cdk init it should generate a test dir.
The name should be thing.test.ts.
Steps of TDD
1. Update test for new requirement
# make changes to the tests2. Make your changes to the Constructs
# just make a change3. Build and Compile the Construct
npm run build4. Run tests with
npm run test