chore(minecraft): remove unused scenario test files
Removes basic-chat.json and damage-reaction.json scenario definitions that are no longer used for testing chat responses and damage reactions.
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
{
|
||||
"name": "Damage Reaction",
|
||||
"steps": [
|
||||
{
|
||||
"name": "Inject Damage Event",
|
||||
"action": "inject_event",
|
||||
"params": {
|
||||
"type": "perception",
|
||||
"payload": {
|
||||
"type": "damage_taken",
|
||||
"description": "Ouch! Took 2 damage from Zombie",
|
||||
"sourceId": "zombie_1",
|
||||
"confidence": 1.0,
|
||||
"timestamp": 1770000000000,
|
||||
"metadata": {
|
||||
"amount": 2,
|
||||
"source": "zombie"
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"type": "minecraft",
|
||||
"id": "zombie_1"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Wait for Reaction",
|
||||
"action": "wait",
|
||||
"params": { "ms": 5000 },
|
||||
"expect": {
|
||||
"log_contains": "Action completed: chat"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user