// Fixture with packages imported, but nothing else import * as path from 'path'; import { Construct } from 'constructs'; import { DockerImage, RemovalPolicy, Stack } from '@aws-cdk/core'; import * as lambda from '@aws-cdk/aws-lambda'; import * as iam from '@aws-cdk/aws-iam'; class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }