test_auth_flows
Test authentication workflows such as login, registration, password reset, and 2FA to ensure secure and functional enterprise authentication systems.
Instructions
Test authentication workflows
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flows | Yes | Authentication flows to test |
Input Schema (JSON Schema)
{
"properties": {
"flows": {
"description": "Authentication flows to test",
"items": {
"enum": [
"login",
"register",
"password-reset",
"2fa"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"flows"
],
"type": "object"
}