UNPKG

@vessl-ai/mcpctl-control-plane

Version:

Vessl MCP Control Plane service for managing distributed jobs.

15 lines 486 B
import { Test } from '@nestjs/testing'; import { LogController } from './log.controller'; describe('LogController', () => { let controller; beforeEach(async () => { const module = await Test.createTestingModule({ controllers: [LogController], }).compile(); controller = module.get(LogController); }); it('should be defined', () => { expect(controller).toBeDefined(); }); }); //# sourceMappingURL=log.controller.spec.js.map