UNPKG

create-chuntianxiaozhu

Version:

春天小猪模板工具

19 lines (14 loc) 492 B
import { Test, TestingModule } from '@nestjs/testing'; import { CommonController } from './common.controller'; describe('CommonController', () => { let controller: CommonController; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [CommonController], }).compile(); controller = module.get<CommonController>(CommonController); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });