test

Generate and execute unit tests with Jest or Vitest.

10|2|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/bugrabilge/bilge-development-kit --skill test-bugrabilge
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/bugrabilge/bilge-development-kit/tree/main/.claude/skills/test
Command: npx skills add https://github.com/bugrabilge/bilge-development-kit --skill test-bugrabilge

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the process of creating and executing tests for your codebase, ensuring code quality and reliability.

Core Features & Use Cases

  • Test Generation: Automatically generates unit tests for specified files or features, identifying edge cases and dependencies.
  • Test Execution: Runs all existing tests in the project or specific test files.
  • Coverage Reporting: Displays the current test coverage report.
  • Watch Mode: Continuously runs tests as code changes.
  • Use Case: After writing a new service function, use this Skill to generate comprehensive tests for it, then run all project tests to ensure no regressions were introduced.

Quick Start

Use the test skill to generate tests for the file 'src/utils/helpers.ts'.

Frequently Asked Questions about test

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate unit tests for a specific file?

To generate unit tests for a specific file, you specify the target file path such as 'src/utils/helpers.ts', and the system automatically creates test cases by identifying edge cases and dependencies.

Can I run existing tests and check code coverage?

Yes, you can run all existing project tests or specific test files, and display the current test coverage report to monitor code quality and identify regressions.

Does this test generation tool work with Jest and Vitest?

Yes, this test generation tool works with common testing frameworks like Jest and Vitest to execute tests, maintain code integrity, and ensure software reliability.

What is the best way to continuously run tests as code changes?

The best way to continuously run tests as code changes is using the watch mode feature, which automatically executes your test suite upon detecting modifications to maintain code quality.

Why should I generate tests after writing a new service function?

You should generate tests after writing a new service function to ensure comprehensive coverage of new features, then run the full project test suite to verify no regressions were introduced.