import { Test, TestingModule } from '@nestjs/testing'; import { ArticleListCrudController } from './article-list-crud.controller'; describe('ArticleListCrud Controller', () => { let controller: ArticleListCrudController; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [ArticleListCrudController], }).compile(); controller = module.get( ArticleListCrudController, ); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });