bun-test
Installation
SKILL.md
Bun Test Guide
Quick Start
import { describe, expect, it, mock, spyOn, beforeEach, afterEach, afterAll } from "bun:test";
describe("MyModule", () => {
it("does something", () => {
expect(1 + 1).toBe(2);
});
});
Run tests:
bun test # Run all tests
bun test --watch # Watch mode
bun test --coverage # With coverage report
Related skills
More from ainergiz/xfeed
opentui
Build terminal UIs with OpenTUI/React. Use when creating screens, components, handling keyboard input, managing scroll, or navigating between views. Covers JSX intrinsics, useKeyboard, scrollbox patterns, and state preservation.
6new-issue
Create GitHub issues with duplicate detection and codebase analysis. Use when you discover a bug, improvement, or issue that wasn't in the original scope/spec during development. Triggers on phrases like "create an issue", "file a bug", "this should be tracked", "we should fix this later", "out of scope issue", "noticed a problem", "found a bug".
6