test

Run cargo tests across a Rust workspace and report results.

Updated Jan 24, 2026
One-click install
npx skills add https://github.com/ereferen/zellij-toolbox --skill test-ereferen
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/ereferen/zellij-toolbox/tree/main/.claude/skills/test
Command: npx skills add https://github.com/ereferen/zellij-toolbox --skill test-ereferen

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Run project tests across a workspace to ensure all crates integrate correctly.

Core Features & Use Cases

  • Run all tests in the workspace with cargo test --workspace.
  • Run targeted tests for specific crates using /test core or /test cli.
  • Receive clear results and actionable guidance when failures occur.

Quick Start

Run all tests with /test, or target core or cli with /test core or /test cli.

Frequently Asked Questions about test

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

FAQPage Schema
How do I run cargo tests across a Rust workspace?

To run cargo tests across a Rust workspace, use the /test command which executes cargo test --workspace, automating test execution across all crates and reporting integration results.

How do I run targeted tests for a specific crate in a Rust workspace?

You can run targeted tests for specific crates by using /test core or /test cli, which deterministically maps to cargo test -p toolbox-core or cargo test -p toolbox-cli respectively.

Do I need the Rust toolchain installed to automate workspace test execution?

Yes, automating workspace test execution requires the Rust toolchain, specifically cargo and rustc, to be installed and configured in your environment before running tests.

What is the best way to verify crate integration in a Rust workspace?

The best way to verify crate integration is running workspace tests via cargo test --workspace, which ensures all crates in the project integrate correctly and reports actionable failures.

Why are my cargo workspace tests failing and how do I get actionable guidance?

When cargo workspace tests fail, this automation reports clear results and actionable guidance to help diagnose integration issues across crates, ensuring you can quickly identify failing components.