// Fixture with packages imported, but nothing else
import { Construct } from 'constructs';
import {
  Stack,
  aws_dynamodb as dynamodb,
} from 'aws-cdk-lib';
import { TableViewer } from 'cdk-dynamo-table-viewer';

class Fixture extends Stack {
  constructor(scope: Construct, id: string) {
    super(scope, id);

    /// here
  }
}