// Fixture with packages imported, but nothing else import { Construct, Stack } from '@aws-cdk/core'; import ec2 = require('@aws-cdk/aws-ec2'); import iam = require('@aws-cdk/aws-iam'); class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }