// Fixture with packages imported, but nothing else import { Construct } from 'constructs'; import { Duration, Stack } from 'aws-cdk-lib'; import * as apigwv2 from 'aws-cdk-lib/aws-apigatewayv2'; import * as lambda from 'aws-cdk-lib/aws-lambda'; class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }