mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
c799c61ff1
The CheckSystem workflow sends a 'PASSED!' SendActivity when all system variables are populated, producing 1 AgentResponseEvent. The test case had min_response_count: 0 with no max, so the assertion defaulted max to 0 and failed with 'Response count greater than expected: 0 (Actual: 1)'. Updated to expect exactly 1 response, matching the SendActivity pattern. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
27 lines
521 B
JSON
27 lines
521 B
JSON
{
|
|
"description": "Send an activity message.",
|
|
"setup": {
|
|
"input": {
|
|
"type": "String",
|
|
"value": "Everything good?"
|
|
}
|
|
},
|
|
"validation": {
|
|
"conversation_count": 1,
|
|
"min_action_count": 2,
|
|
"max_action_count": -1,
|
|
"min_response_count": 1,
|
|
"max_response_count": 1,
|
|
"min_message_count": 0,
|
|
"max_message_count": 0,
|
|
"actions": {
|
|
"start": [
|
|
"check_system"
|
|
],
|
|
"final": [
|
|
"activity_passed",
|
|
"check_system_Post"
|
|
]
|
|
}
|
|
}
|
|
} |