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