26 lines
494 B
JSON
26 lines
494 B
JSON
{
|
|
"name": "Basic Chat Response",
|
|
"steps": [
|
|
{
|
|
"name": "Inject Hello Message",
|
|
"action": "inject_chat",
|
|
"params": {
|
|
"username": "Tester",
|
|
"message": "Hello bot, are you working?"
|
|
}
|
|
},
|
|
{
|
|
"name": "Wait for Processing",
|
|
"action": "wait",
|
|
"params": { "ms": 5000 }
|
|
},
|
|
{
|
|
"name": "Verify Bot Response",
|
|
"action": "wait",
|
|
"expect": {
|
|
"log_contains": "Action completed: chat"
|
|
}
|
|
}
|
|
]
|
|
}
|