Migrate Jest/Vitest tests and config to Rstest with minimal behavior changes. Use the current Rstest migration docs for exact mappings; this skill adds scope, dependency, and cleanup guardrails.
https://raw.githubusercontent.com/rstackjs/agent-skills/main/skills/migrate-to-rstest/references/detect-test-framework.md).https://raw.githubusercontent.com/rstackjs/agent-skills/main/skills/migrate-to-rstest/references/dependency-install-gate.md).jest/vi shims or aliases; rewrite call sites to Rstest APIs (https://raw.githubusercontent.com/rstackjs/agent-skills/main/skills/migrate-to-rstest/references/global-api-migration.md).rstest / rstest run is single-run; watch mode is rstest --watch or rstest watch.globals defaults to false; if globals remain, set globals: true and add @rstest/core/globals types.https://raw.githubusercontent.com/rstackjs/agent-skills/main/skills/migrate-to-rstest/references/dependency-install-gate.md for latest-only APIs, coverage providers, adapters, plugins, and toolchain-version fallbacks.If the next fix requires many test edits or production source changes, stop and report: why smaller fixes failed, options, risks, and the recommended path.