# Run Tests

> Run tests for a specific crate or domain Use when this capability is needed.

- Skill: `tomevault-io/run-tests-20` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/run-tests-20`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/run-tests-20/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/run-tests-20

---

# Run Domain Tests

Execute targeted test suites for specific crates or functionality.

## Usage
- `/run-tests` - Run all tests
- `/run-tests <crate>` - Run tests for specific crate (e.g., `/run-tests tss-submit`)
- `/run-tests <crate> <filter>` - Run filtered tests (e.g., `/run-tests tss-submit validate`)

## Commands
```bash
# All tests
cargo test

# Specific crate
cargo test --package tss-submit
cargo test --package tss-standards
cargo test --package tss-ingest
cargo test --package tss-gui

# Filtered tests
cargo test --package tss-submit validate
cargo test --package tss-submit export
cargo test --package tss-submit normalize
```

## Test Categories
- **Unit tests**: Pure function tests (inline with `#[cfg(test)]`)
- **Integration tests**: Full pipeline with mock CSV data
- **Validation tests**: CDISC compliance checking

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/rubentalstra) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

