jasmine-skill

Installation
SKILL.md

Jasmine Testing Skill

Core Patterns

Basic Test

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

  beforeEach(() => { calc = new Calculator(); });

  it('should add two numbers', () => {
    expect(calc.add(2, 3)).toBe(5);
  });
Installs
98
GitHub Stars
307
First Seen
Feb 26, 2026
jasmine-skill — lambdatest/agent-skills