// Fixture with packages imported, but nothing else
import * as cdk from '@aws-cdk/core';
import * as servicecatalog from '@aws-cdk/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
  }
}
