Automated testing and verification for AI agents
For AI Agents:
/render/agent-check after deploying code to verify it workssuccess field in the response (true/false)errors[] array for any issues foundchecks{} object for specific test resultsdomSnapshot to verify page structureconsoleLogs[] for JavaScript errorsperformance for timing metricsResponse Format:
{
"success": boolean,
"errors": string[],
"checks": {
"pageLoaded": boolean,
"noAuthError": boolean,
"noServerError": boolean,
"noHydrationError": boolean,
"noConsoleErrors": boolean
},
"domSnapshot": { ... },
"performance": { ... }
}