123456789101112131415161718 |
- import { Test, TestingModule } from '@nestjs/testing';
- import { CollectionsController } from './collections.controller';
- describe('CollectionsController', () => {
- let controller: CollectionsController;
- beforeEach(async () => {
- const module: TestingModule = await Test.createTestingModule({
- controllers: [CollectionsController],
- }).compile();
- controller = module.get<CollectionsController>(CollectionsController);
- });
- it('should be defined', () => {
- expect(controller).toBeDefined();
- });
- });
|