// Fixture with packages imported, but nothing else import { Construct } from 'constructs'; import { Stack, aws_dynamodb as dynamodb, aws_lambda as lambda, aws_apigateway as apigw, } from 'aws-cdk-lib'; import { Watchful } from 'cdk-watchful'; class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }