Files
waggle-os/packages/server/tests/routes/capability-governance.test.ts
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

10 lines
374 B
TypeScript

import { describe, it, expect } from 'vitest';
describe('Capability Governance Routes', () => {
it('exports capabilityGovernanceRoutes function', async () => {
const mod = await import('../../src/routes/capability-governance.js');
expect(mod.capabilityGovernanceRoutes).toBeDefined();
expect(typeof mod.capabilityGovernanceRoutes).toBe('function');
});
});