Constimport { testAgentNoAuth } from '@adcp/client/testing';
// This will fail with authentication error
try {
const result = await testAgentNoAuth.getProducts({
brief: 'Coffee subscription',
promoted_offering: 'Premium coffee'
});
} catch (error) {
console.log('Expected auth error:', error.message);
}
Pre-configured test agent client WITHOUT authentication (MCP protocol). Demonstrates what happens when calling authenticated endpoints without auth. Useful for testing error handling and showing auth vs no-auth differences.