run-smoke-tests
Installation
SKILL.md
Run smoke tests to verify the extension loads and basic functionality works in a real VS Code environment.
When to Use This Skill
- After making changes to extension activation code
- After modifying commands or API exports
- Before submitting a PR to verify nothing is broken
- When the user asks to "run smoke tests" or "verify the extension works"
Quick Reference
| Action | Command |
|---|---|
| Run all smoke tests | npm run compile && npm run compile-tests && npm run smoke-test |
| Run specific test | npm run smoke-test -- --grep "Extension activates" |
| Debug in VS Code | Debug panel → "Smoke Tests" → F5 |