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