Skip to content

Commit f53e3ef

Browse files
fix(tests): update agent registry count from 94 to 96
Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 303fc0c commit f53e3ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

v3/tests/unit/routing/qe-agent-registry.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ import type { QEDomain } from '../../../src/learning/qe-patterns.js';
1818

1919
describe('QE Agent Registry', () => {
2020
describe('Registry Contents', () => {
21-
it('should have 94 agents total', () => {
22-
expect(QE_AGENT_REGISTRY.length).toBe(94);
21+
it('should have 96 agents total', () => {
22+
expect(QE_AGENT_REGISTRY.length).toBe(96);
2323
});
2424

2525
it('should have correct agent counts by category', () => {
2626
const counts = getAgentCounts();
27-
expect(counts.total).toBe(94);
27+
expect(counts.total).toBe(96);
2828
expect(counts.v3QE).toBeGreaterThanOrEqual(40);
2929
expect(counts.v3QESubagents).toBe(7);
3030
expect(counts.n8n).toBeGreaterThan(10);

0 commit comments

Comments
 (0)