web-testing

Automate web testing across unit, E2E, load, and accessibility scenarios.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/lv7dev/shop_v2 --skill web-testing
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: web-testing
Source: https://github.com/lv7dev/shop_v2/tree/main/.claude/skills/web-testing
Command: npx skills add https://github.com/lv7dev/shop_v2 --skill web-testing

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates comprehensive web testing across unit, integration, E2E, and performance scenarios.

Core Features & Use Cases

  • Unit testing with Vitest/Jest
  • E2E testing with Playwright
  • Load testing with k6 and performance checks with Lighthouse
  • Accessibility checks using axe-core and cross-browser validation

Quick Start

  • npx vitest run
  • npx playwright test
  • npx playwright test --ui
  • k6 run load-test.js
  • npx @axe-core/cli https://example.com
  • npx lighthouse https://example.com

Frequently Asked Questions about web-testing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate end-to-end web tests across multiple frameworks?

This Skill orchestrates end-to-end web tests by coordinating Vitest for unit testing, Playwright for E2E, k6 for load testing, and Lighthouse for performance checks within a unified reporting workflow.

What is the best way to automate cross-browser E2E testing and debug flaky tests?

Automating cross-browser E2E testing with Playwright provides reliable execution across modern web apps, while the orchestration workflow helps isolate and debug flaky test scenarios systematically.

Can I run accessibility validation and visual regression checks in the same test suite?

Yes, you can run accessibility validation using axe-core alongside visual regression checks, integrating both into your comprehensive web testing workflow to ensure cross-browser reliability and compliance.

Does this web testing approach support performance and load testing scenarios?

Yes, this web testing approach supports performance and load testing scenarios by utilizing k6 for load test execution and Lighthouse for performance metrics validation across your modern web applications.

How do I start automating unit and integration tests for a modern web app?

You can start automating unit and integration tests by running `npx vitest run` for unit testing and `npx playwright test` for E2E testing, orchestrating both within your development pipeline.

What are the limitations of combining Vitest, Playwright, and k6 in one testing workflow?

Combining Vitest, Playwright, and k6 in one testing workflow requires managing multiple toolchains and dependencies, meaning your team must handle diverse configuration files and orchestrate reporting across distinct test runners.