testing

Run npm test suites and report failing test file paths.

12|1|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/helderberto/agent-skills --skill testing-helderberto
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: testing
Source: https://github.com/helderberto/agent-skills/tree/main/skills/testing
Command: npx skills add https://github.com/helderberto/agent-skills --skill testing-helderberto

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Run the test suite and report results quickly, helping developers get fast feedback on code changes.

Core Features & Use Cases

  • Simple wrapper around npm test that prints a concise summary of passing and failing tests.
  • Suitable for local development, pull requests, and CI, enabling quick verification without manual test parsing.
  • Use when you want to run tests, see failures with filenames, and avoid editing tests.

Quick Start

Ask the agent to run the test suite and report concise results.

Frequently Asked Questions about testing

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

FAQPage Schema
How do I run npm test and report failures concisely in Node.js?

To run npm test and report failures concisely in Node.js, this Skill executes the test suite and prints a summary of passing and failing tests with their file paths. It provides quick feedback without altering source code or test files.

Can I use this to automate test reporting in CI pipelines?

Yes, you can use this to automate test reporting in CI pipelines. It wraps the npm test script to automatically parse and report concise test results, enabling quick verification of changes during continuous integration without manual test output parsing.

Does this test runner modify my source code or test files?

No, this test runner does not modify your source code or test files. It strictly executes the npm test script and reports the results, ensuring your project files remain untouched while providing a concise summary of failing tests with their file paths.

What is the best way to get quick feedback on failing tests locally?

The best way to get quick feedback on failing tests locally is to run the test suite through a wrapper that reports concise results. This Skill executes npm test and highlights failing tests with their file paths, helping developers quickly identify and resolve issues.

Why are my Node.js test failures not showing file paths in the output?

If your Node.js test failures are not showing file paths in the output, using a dedicated reporting wrapper can help. This Skill relies on the npm test script and specifically reports failing tests with their corresponding file paths for easier debugging.