code-test

Run targeted cargo test commands for Rust workspace code changes.

Updated Feb 12, 2026
One-click install
npx skills add https://github.com/edgeandnode/ampup --skill code-test-edgeandnode
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-test
Source: https://github.com/edgeandnode/ampup/tree/main/.agents/skills/code-test
Command: npx skills add https://github.com/edgeandnode/ampup --skill code-test-edgeandnode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides testing operations for the project codebase using cargo test.

Core Features & Use Cases

  • Targeted Testing: Run tests with optional filters to cover specific units or integration points.
  • Workflow Guidance: Provides a recommended testing workflow including pre-commit checks and integration tests.
  • Use Case: Validate a bug fix by running a focused subset of tests to confirm behavior.

Quick Start

Run just test to execute the test suite.

Frequently Asked Questions about code-test

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

FAQPage Schema
How do I run targeted tests for code changes in a Rust workspace?

Run just test to execute the test suite in your Rust workspace. The skill also supports cargo test with optional filters and extra flags, allowing you to validate specific behavior changes quickly.

Can I run a focused subset of Rust tests to validate a bug fix?

Yes, you can run a focused subset of tests by applying optional filters to cargo test. This validates specific behavior changes and confirms bug fixes with minimal overhead, ensuring regression safety for your Rust codebase.

Does Just work with cargo test for Rust integration tests?

Yes, the skill supports the Just test invocation for running cargo test, including integration tests. It provides workflow guidance for integrating unit and integration tests within a Rust workspace to validate behavior changes.

What is the recommended testing workflow for a Rust codebase?

The recommended testing workflow includes pre-commit checks and integration tests. This workflow guides you to validate behavior changes, ensure regression safety, and confirm fixes with minimal overhead using cargo test within a Rust workspace.

How do I pass extra flags to cargo test when validating changes?

The skill supports cargo test with extra flags, allowing you to run targeted tests with optional filters. This validates behavior changes and ensures regression safety by applying specific test configurations within a Rust workspace.