mocha-skill

Installation
SKILL.md

Mocha Testing Skill

Core Patterns

Basic Test with Chai

const { expect } = require('chai');

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

  it('should add two numbers', () => {
    expect(calc.add(2, 3)).to.equal(5);
  });
Installs
88
GitHub Stars
307
First Seen
Mar 5, 2026
mocha-skill — lambdatest/agent-skills