@vessl-ai/mcpctl-control-plane
Version:
Vessl MCP Control Plane service for managing distributed jobs.
19 lines (14 loc) • 492 B
text/typescript
import { Test, TestingModule } from '@nestjs/testing';
import { SecretController } from './secret.controller';
describe('SecretController', () => {
let controller: SecretController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [SecretController],
}).compile();
controller = module.get<SecretController>(SecretController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});