بنقرة واحدة
jest-setup
Configure Jest for a TypeScript project — ts-jest, module mapping, and coverage thresholds.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Configure Jest for a TypeScript project — ts-jest, module mapping, and coverage thresholds.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Find the commit that introduced a regression automatically with git bisect run.
Diagnose a slow Postgres query and add the right index using EXPLAIN ANALYZE.
Test React components with Testing Library — render, query by role, and assert on user-visible behavior.
Fix TypeScript ES module import errors by adding .js extensions to relative imports.
Migrate a Jest test suite to Vitest — config, globals, and mock API differences.
Comprehensive guide for creating high-quality skills for Claude. Use when building a new skill, writing a SKILL.md, designing skill frontmatter, planning skill structure, debugging trigger issues, or reviewing an existing skill for improvements. Covers standalone skills, MCP-enhanced skills, and skill-tree programmatic skills.
| name | jest-setup |
| description | Configure Jest for a TypeScript project — ts-jest, module mapping, and coverage thresholds. |
| version | 1.0.0 |
| tags | ["jest","testing","config"] |
| status | active |
jest, ts-jest, and @types/jest.jest.config.ts: set preset: 'ts-jest' and testEnvironment: 'node' (or jsdom for UI).moduleNameMapper so @/x resolves like your bundler.coverageThreshold so coverage can't silently regress.