We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303fc0c commit f53e3efCopy full SHA for f53e3ef
v3/tests/unit/routing/qe-agent-registry.test.ts
@@ -18,13 +18,13 @@ import type { QEDomain } from '../../../src/learning/qe-patterns.js';
18
19
describe('QE Agent Registry', () => {
20
describe('Registry Contents', () => {
21
- it('should have 94 agents total', () => {
22
- expect(QE_AGENT_REGISTRY.length).toBe(94);
+ it('should have 96 agents total', () => {
+ expect(QE_AGENT_REGISTRY.length).toBe(96);
23
});
24
25
it('should have correct agent counts by category', () => {
26
const counts = getAgentCounts();
27
- expect(counts.total).toBe(94);
+ expect(counts.total).toBe(96);
28
expect(counts.v3QE).toBeGreaterThanOrEqual(40);
29
expect(counts.v3QESubagents).toBe(7);
30
expect(counts.n8n).toBeGreaterThan(10);
0 commit comments