// Fixture with packages imported, but nothing else import { Construct } from 'constructs'; import { App, CfnOutput, Duration, Stack } from 'aws-cdk-lib'; import * as sfn from 'aws-cdk-lib/aws-stepfunctions'; import * as tasks from 'aws-cdk-lib/aws-stepfunctions-tasks'; import * as cloudwatch from 'aws-cdk-lib/aws-cloudwatch'; import * as iam from 'aws-cdk-lib/aws-iam'; class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }