/** * GET /api/test/credentials * * Returns test user credentials for automated testing * * ⚠️ SECURITY: This endpoint is ONLY available in development mode. * It returns 404 in production to prevent credential exposure. * * Usage in tests: * ```typescript * const response = await fetch('http://localhost:3000/api/test/credentials') * const { email, password } = await response.json() * ``` */ import { createTestCredentialsEndpoint } from '../../utils/test-helpers' export default createTestCredentialsEndpoint()