Constimport { testAgentNoAuthA2A } from '@adcp/client/testing';
// Compare authenticated vs unauthenticated
import { testAgentA2A } from '@adcp/client/testing';
// This works (has auth)
const authResult = await testAgentA2A.getProducts({ brief: 'Test' });
// This fails (no auth)
const noAuthResult = await testAgentNoAuthA2A.getProducts({ brief: 'Test' });
Pre-configured test agent client WITHOUT authentication (A2A protocol). Demonstrates what happens when calling authenticated endpoints without auth. Useful for testing error handling and showing auth vs no-auth differences.