Run tests using Bun's built-in test runner with optimized output.
Executes Bun test runner with optimized output and coverage reporting.
/plugin marketplace add laurigates/claude-plugins/plugin install typescript-plugin@lgates-claude-pluginsbun/Run tests using Bun's built-in test runner with optimized output.
pattern (optional): Test file or name pattern--coverage: Enable code coverage reporting--bail: Stop on first failure--watch: Watch mode for developmentQuick feedback (default for agentic use):
bun test --dots --bail=1 $PATTERN
With coverage:
bun test --dots --coverage $PATTERN
Watch mode:
bun test --watch $PATTERN
CI mode (JUnit output):
bun test --reporter=junit --reporter-outfile=junit.xml $PATTERN
| Symbol | Meaning |
|---|---|
. | Test passed |
F | Test failed |
S | Test skipped |