inbound.controller.spec.ts 499 B

123456789101112131415161718
  1. import { Test, TestingModule } from '@nestjs/testing';
  2. import { InboundController } from './inbound.controller';
  3. describe('InboundController', () => {
  4. let controller: InboundController;
  5. beforeEach(async () => {
  6. const module: TestingModule = await Test.createTestingModule({
  7. controllers: [InboundController],
  8. }).compile();
  9. controller = module.get<InboundController>(InboundController);
  10. });
  11. it('should be defined', () => {
  12. expect(controller).toBeDefined();
  13. });
  14. });