test-coverage

Identify test scenarios and generate Jest or Vitest test templates.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/mouayadakel/flixCamFinal --skill test-coverage-mouayadakel
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-coverage
Source: https://github.com/mouayadakel/flixCamFinal/tree/main/.cursor/skills/test-coverage
Command: npx skills add https://github.com/mouayadakel/flixCamFinal --skill test-coverage-mouayadakel

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill ensures that new or modified code has adequate test coverage, preventing regressions and improving code quality by identifying untested logic.

Core Features & Use Cases

  • Test Scenario Identification: Helps list out necessary test cases, including happy paths, error conditions, and edge cases.
  • Test Template Generation: Produces boilerplate code for tests using common frameworks like Jest or Vitest.
  • Coverage Tracking: Reports on current vs. target test coverage and highlights areas needing more tests.
  • Use Case: When you've just added a new authentication service, this Skill will prompt you to identify test scenarios like valid login, invalid credentials, and expired tokens, then generate the basic describe and it blocks for your test file.

Quick Start

Use the test-coverage skill to generate test boilerplate for the new user service.

Frequently Asked Questions about test-coverage

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

FAQPage Schema
How do I generate unit test templates for new business logic?

You can generate test boilerplate for new code by using this Skill to identify required test scenarios, including happy paths and error conditions, and produce describe and it blocks for frameworks like Jest or Vitest.

What is the best way to track code coverage for modified API routes?

The best way to track code coverage for modified API routes is using this Skill to report current versus target metrics, highlight areas needing more tests, and suggest next test cases for critical functions to prevent regressions.

Can I use this to identify test scenarios for an authentication service?

Yes, you can use it to identify test scenarios for an authentication service by automatically prompting for cases like valid login, invalid credentials, and expired tokens, then generating the basic test blocks for your file.

Does this test coverage tool work with Jest and Vitest?

Yes, this test coverage tool works with Jest and Vitest. It produces boilerplate test code using these common frameworks to help you quickly set up describe and it blocks for your new or modified code.

Why should I enforce test coverage on new code logic?

You should enforce test coverage on new code logic to prevent regressions and improve code quality by ensuring newly added or modified logic is adequately tested before identifying untested areas and generating necessary tests.

What are the limitations of automated test template generation?

A limitation of automated test template generation is that it produces boilerplate code requiring further implementation. While it identifies scenarios and suggests next test cases, developers must complete specific assertions for critical functions.