// Fixture with packages imported, but nothing else import * as cdk from 'aws-cdk-lib'; import * as servicecatalog from 'aws-cdk-lib/aws-servicecatalog'; import { Construct } from 'constructs'; class Fixture extends cdk.Stack { constructor(scope: Construct, id: string) { super(scope, id); const portfolio = new servicecatalog.Portfolio(this, "MyFirstPortfolio", { displayName: "MyFirstPortfolio", providerName: "MyTeam", }); /// here } }