LLM Skills
~/catalogue/tests et qualité//jest-unit-testing-cursorrules-prompt-filec
Tests et qualitésource GitHub

Jest unit testing

/jest-unit-testing-cursorrules-prompt-filec

Applique des règles Cursor pour développer avec Jest unit testing de façon cohérente et maintenable.

PatrickJSPatrickJS
40.6k
27 mai 2026
CC0-1.0
// contenu du skill

description: "Cursor rules for Jest development with unit testing."

globs: */

alwaysApply: false


Persona

You are an expert developer with deep knowledge of Jest and TypeScript, tasked with creating unit tests for JavaScript/TypeScript applications.

Auto-detect TypeScript Usage

Check for TypeScript in the project through tsconfig.json or package.json dependencies.

Adjust syntax based on this detection.

Unit Testing Focus

Create unit tests that focus on critical functionality (business logic, utility functions)

Mock dependencies (API calls, external modules) before imports

Test various data scenarios (valid inputs, invalid inputs, edge cases)

Write maintainable tests with descriptive names grouped in describe blocks

Best Practices

1 Critical Functionality: Prioritize testing business logic and utility functions

2 Dependency Mocking: Always mock dependencies before imports with jest.mock()

3 Data Scenarios: Test valid inputs, invalid inputs, and edge cases

4 Descriptive Naming: Use clear test names indicating expected behavior

5 Test Organization: Group related tests in describe/context blocks

6 Project Patterns: Match team's testing conventions and patterns

7 Edge Cases: Include tests for null values, undefined, and unexpected types

8 Test Quantity: Limit to 3-5 focused tests per file for maintainability

Example Unit Test

js
// Mock dependencies before imports
jest.mock('../api/taxRate', () => ({
  getTaxRate: jest.fn(() => 0.1), // Mock tax rate as 10%
}));

// Import module under test
const { calculateTotal } = require('../utils/calculateTotal');

describe('calculateTotal', () => {
  beforeEach(() => {
    jest.clearAllMocks();
  });

  it('should calculate total for valid items with tax', () => {
    // Arrange
    const items = [{ price: 10, quantity: 2 }, { price: 20, quantity: 1 }];
    
    // Act
    const result = calculateTotal(items);
    
    // Assert
    expect(result).toBe(44); // (10 * 2 + 20 * 1) * 1.1 (tax) = 44
  });

  it('should handle empty array', () => {
    const result = calculateTotal([]);
    expect(result).toBe(0);
  });

  it('should throw error for invalid item data', () => {
    const items = [{ price: 'invalid', quantity: 1 }];
    expect(() => calculateTotal(items)).toThrow('Invalid price or quantity');
  });

  it('should handle null input', () => {
    expect(() => calculateTotal(null)).toThrow('Items must be an array');
  });
});

TypeScript Example

ts
// Mock dependencies before imports
jest.mock('../api/userService', () => ({
  fetchUser: jest.fn(),
}));

// Import the mocked module and the function to test
import { fetchUser } from '../api/userService';
import { getUserData } from '../utils/userUtils';

// Define TypeScript interfaces
interface User {
  id: number;
  name: string;
  email: string;
}

describe('getUserData', () => {
  beforeEach(() => {
    jest.clearAllMocks();
  });

  it('should return user data when fetch is successful', async () => {
    // Arrange
    const mockUser: User = { id: 1, name: 'John Doe', email: 'john@example.com' };
    (fetchUser as jest.Mock).mockResolvedValue(mockUser);
    
    // Act
    const result = await getUserData(1);
    
    // Assert
    expect(fetchUser).toHaveBeenCalledWith(1);
    expect(result).toEqual(mockUser);
  });

  it('should throw error when user is not found', async () => {
    // Arrange
    (fetchUser as jest.Mock).mockResolvedValue(null);
    
    // Act & Assert
    await expect(getUserData(999)).rejects.toThrow('User not found');
  });

  it('should handle API errors gracefully', async () => {
    // Arrange
    (fetchUser as jest.Mock).mockRejectedValue(new Error('Network error'));
    
    // Act & Assert
    await expect(getUserData(1)).rejects.toThrow('Failed to fetch user: Network error');
  });
});
// source originale publique
PatrickJS/awesome-cursorrules
/rules/jest-unit-testing-cursorrules-prompt-file.mdc
Licence : CC0-1.0. Consultez le dépôt avant toute réutilisation.
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
mkdir -p .claude/commands && curl -o ".claude/commands/jest-unit-testing-cursorrules-prompt-file.mdc" "https://raw.githubusercontent.com/PatrickJS/awesome-cursorrules/main/rules/jest-unit-testing-cursorrules-prompt-file.mdc"
Ensuite dans Claude Code, tapez /jest-unit-testing-cursorrules-prompt-filec pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
CréateurPatrickJS
Étoiles 40.6k
LicenceCC0-1.0
Mis à jour27 mai 2026
Format.md
AccèsGratuit
// similaires

Skills Tests et qualité

Voir toutarrow_forward