jest-skill

Installation
SKILL.md

Jest Testing Skill

Core Patterns

Basic Test

describe('Calculator', () => {
  let calc;
  beforeEach(() => { calc = new Calculator(); });

  test('adds two numbers', () => {
    expect(calc.add(2, 3)).toBe(5);
  });
Installs
145
GitHub Stars
321
First Seen
Feb 26, 2026
jest-skill — lambdatest/agent-skills