test

Run Jest and E2E test suites for WordPress blocks and extensions.

12|9|Updated Oct 23, 2025
One-click install
npx skills add https://github.com/jnealey88/designsetgo --skill test-jnealey88
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/jnealey88/designsetgo/tree/main/.claude/skills/test
Command: npx skills add https://github.com/jnealey88/designsetgo --skill test-jnealey88

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines validation of plugin quality by executing the test suites for blocks and extensions, ensuring changes do not introduce regressions.

Core Features & Use Cases

  • Runs the full test suite (Jest and E2E) for blocks and extensions.
  • Supports watch mode and test coverage to speed up iteration and quality checks.
  • Use Case: When making changes to a block or extension, run the tests to verify everything passes.

Quick Start

Run npm test to execute the full plugin test suite.

Frequently Asked Questions about test

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

FAQPage Schema
How do I run Jest and E2E tests for a WordPress plugin?

To run Jest and E2E tests for a WordPress plugin, execute the npm test script to automate the complete test suite and validate block and extension changes for regressions.

What's the best way to validate WordPress block changes don't introduce regressions?

Validating WordPress block changes requires running the full plugin test suite via npm test, which executes both Jest unit tests and E2E tests to ensure no regressions occur.

Do I need Node.js and npm to run WordPress block test suites?

Yes, you need Node.js and npm installed to run WordPress block test suites, as the automated testing requires executing project test scripts like npm test and npm run test:watch.

Can I use watch mode and check test coverage for WordPress extensions?

Yes, you can check test coverage and use watch mode for WordPress extensions by running the npm run test:watch and npm run test:coverage scripts to speed up iteration and quality checks.