@storybook/addon-mcp 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -3
- package/dist/preset.js +268 -4312
- package/package.json +14 -8
package/README.md
CHANGED
|
@@ -144,6 +144,19 @@ We welcome contributions to improve Storybook's agent integration, within or out
|
|
|
144
144
|
|
|
145
145
|
4. **Testing**: Run the MCP inspector to test the server functionality (requires that the Storybook dev server is running):
|
|
146
146
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
147
|
+
```bash
|
|
148
|
+
pnpm run inspect
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
Run the unit test suite:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
# Run tests in watch mode
|
|
155
|
+
pnpm test
|
|
156
|
+
|
|
157
|
+
# Run tests once
|
|
158
|
+
pnpm test run
|
|
159
|
+
|
|
160
|
+
# Run tests with coverage
|
|
161
|
+
pnpm test run --coverage
|
|
162
|
+
```
|