import { Test, TestingModule } from '@nestjs/testing';
import { BundleGenerationController } from './bundle-generation.controller';
import { BundleGenerationService } from './bundle-generation.service';

describe('BundleGenerationController', () => {
  let controller: BundleGenerationController;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      controllers: [BundleGenerationController],
      providers: [BundleGenerationService],
    }).compile();

    controller = module.get<BundleGenerationController>(BundleGenerationController);
  });

  it('should be defined', () => {
    expect(controller).toBeDefined();
  });
});
