flags-test
Installation
SKILL.md
Overview
This skill helps write and run tests for @jondotsoy/flags, a TypeScript CLI argument parser library. Tests use Bun's built-in test runner.
Running Tests
# Run all tests
bun test
# Run a single test file
bun test src/FlagsParser.spec.ts
# Run only failing tests
bun test --only-failures
# Filter by test name
bun test --only-failures --test-name-pattern="<pattern>"