UNPKG

@vessl-ai/mcpctl-control-plane

Version:

Vessl MCP Control Plane service for managing distributed jobs.

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