mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
24 lines
792 B
JSON
24 lines
792 B
JSON
{
|
|
"components": [
|
|
{
|
|
"name": "TestRunner",
|
|
"description": "Interactive test runner component for executing Lua tests",
|
|
"props": {
|
|
"packageId": { "type": "string", "description": "Package ID to test" },
|
|
"autoRun": { "type": "boolean", "default": false },
|
|
"filter": { "type": "string", "description": "Filter tests by name" },
|
|
"verbose": { "type": "boolean", "default": true }
|
|
}
|
|
},
|
|
{
|
|
"name": "TestResults",
|
|
"description": "Displays test results in a formatted view",
|
|
"props": {
|
|
"results": { "type": "object", "required": true },
|
|
"showDuration": { "type": "boolean", "default": true },
|
|
"expandErrors": { "type": "boolean", "default": true }
|
|
}
|
|
}
|
|
]
|
|
}
|