frontend-testing

>

INSTALLATION
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill frontend-testing
Run in your project or agent environment. Adjust flags if your CLI version differs.

SKILL.md

Frontend Testing

Table of Contents

  • [Overview](#overview)
  • [When to Use](#when-to-use)
  • [Quick Start](#quick-start)
  • [Reference Guides](#reference-guides)
  • [Best Practices](#best-practices)

Overview

Build comprehensive test suites for frontend applications including unit tests, integration tests, and end-to-end tests with proper coverage and assertions.

When to Use

  • Component testing
  • Integration testing
  • End-to-end testing
  • Regression prevention
  • Quality assurance
  • Test-driven development

Quick Start

Minimal working example:

// Button.test.tsx

import { render, screen, fireEvent } from '@testing-library/react';

import '@testing-library/jest-dom';

import { Button } from './Button';

describe('Button Component', () => {

  it('renders button with text', () => {

    render(<Button>Click me</Button>);

    expect(screen.getByRole('button')).toHaveTextContent('Click me');

  });

  it('calls onClick handler when clicked', () => {

    const handleClick = jest.fn();

    render(<Button onClick={handleClick}>Click</Button>);

    fireEvent.click(screen.getByRole('button'));

    expect(handleClick).toHaveBeenCalledTimes(1);

  });

  it('disables button when disabled prop is true', () => {

    render(<Button disabled>Click me</Button>);

    expect(screen.getByRole('button')).toBeDisabled();

  });

  it('applies variant styles correctly', () => {

// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide

Contents

Jest Unit Testing (React)

Jest Unit Testing (React)

React Testing Library Integration Tests

React Testing Library Integration Tests

Vitest for Vue Testing

Vitest for Vue Testing

Cypress E2E Testing

Cypress E2E Testing

Test Coverage Configuration

Test Coverage Configuration

Best Practices

✅ DO

  • Follow established patterns and conventions
  • Write clean, maintainable code
  • Add appropriate documentation
  • Test thoroughly before deploying

❌ DON'T

  • Skip testing or validation
  • Ignore error handling
  • Hard-code configuration values
BrowserAct

Let your agent run on any real-world website

Bypass CAPTCHA & anti-bot for free. Start local, scale to cloud.

Explore BrowserAct Skills →

Stop writing automation&scrapers

Install the CLI. Run your first Skill in 30 seconds. Scale when you're ready.

Start free
free · no credit card