smithery.ai

backend-testing

Implement and debug Rust/Tauri backend tests with focused execution and Flequit command constraints.

First seen Apr 3, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 913 B
  • docs SUMMARY.md 306 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Backend Testing Skill

Use this skill for Rust test creation, failure analysis, and regression prevention.

Command rules

  • Always run backend tests with worker cap: cargo test -j 4.
  • Start with focused scope (single test/crate), then broaden.

Examples:

  • cargo test test_name -j 4
  • cargo test -p flequit-core -j 4
  • cargo test -p flequit-infrastructure-sqlite -j 4

Workflow

  1. Reproduce with the smallest failing scope.
  2. Fix root cause (logic, mock, data setup, or async behavior).
  3. Re-run the same focused test.
  4. Run wider suite only after focused pass.

Test design

  • Unit tests: isolate service/business logic.
  • Integration tests: verify cross-layer behavior with realistic setup.
  • Assert both success path and key failure path.