thedaviddias/front-end-checklist

e2e-testing

Use when reviewing CI coverage, automated checks, or test strategy related to Implement end-to-end testing. Focus on whether the rule is continuously verified, not just documented.

First seen Jun 20, 2026

Installation

$ npx skills add thedaviddias/front-end-checklist --skill e2e-testing

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thedaviddias/front-end-checklist · top by installs.

npx skills add thedaviddias/front-end-checklist

Browse all from thedaviddias/front-end-checklist

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 74.1K
License MIT
Default branch main
Open issues 5
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
category
testing
priority
high
difficulty
intermediate
estimatedTime
30
source
frontendchecklist.io
url
https://frontendchecklist.io/en/rules/testing/e2e-testing

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,597 B
  • docs SUMMARY.md 199 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Implement end-to-end testing

E2E tests catch integration issues that unit tests miss—verifying your application works correctly from the user's perspective across all components.

Quick Reference

  • Test critical user journeys: authentication, checkout, core business flows
  • Use data-testid attributes for stable, maintainable selectors
  • Implement Page Object Model for reusable test components
  • Run E2E tests in CI/CD with artifact uploads on failure

Check

Review this project for E2E test coverage of critical user journeys like authentication, checkout, and form submissions.

Fix

Add E2E tests for critical user journeys using Playwright or Cypress.

Explain

Explain E2E testing best practices including test organization, selectors, and CI/CD integration.

Code Review

Review tests, CI workflows, and enforcement points related to Implement end-to-end testing. Flag exact gaps where the rule is not automatically verified or where failures do not block regressions.


For full implementation details, code examples, and framework-specific guidance, see references/rule.md.

Rule page: https://frontendchecklist.io/en/rules/testing/e2e-testing