storybook_test_component
Run visual, accessibility, and interaction tests on UI components to ensure compliance and quality. Supports comprehensive testing workflows for improved UI/UX development.
Instructions
Run visual and accessibility tests on a component
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentName | Yes | ||
storyName | No | ||
testTypes | No |
Input Schema (JSON Schema)
{
"properties": {
"componentName": {
"type": "string"
},
"storyName": {
"type": "string"
},
"testTypes": {
"items": {
"enum": [
"visual",
"accessibility",
"interaction"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"componentName"
],
"type": "object"
}