integration-tests

Generate and execute Playwright integration tests from feature specs.

1|2|Updated Apr 12, 2026
One-click install
npx skills add https://github.com/matchojecki/logistiko-celny --skill integration-tests-matchojecki
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: integration-tests
Source: https://github.com/matchojecki/logistiko-celny/tree/main/.ai/skills/integration-tests
Command: npx skills add https://github.com/matchojecki/logistiko-celny --skill integration-tests-matchojecki

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the creation, execution, and reporting of Playwright-based QA tests for integration scenarios across a modular codebase.

Core Features & Use Cases

  • Generates executable tests in module-local integration directories by exploring the running application.
  • Runs existing integration tests after feature/bug implementation and reports failures with artifact-based diagnosis.
  • Optionally produces a markdown scenario for documentation.

Quick Start

Run the full integration test suite against the active application to validate changes and produce a report.

Frequently Asked Questions about integration-tests

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

FAQPage Schema
How do I automate Playwright integration tests from feature specs?

Automate Playwright integration tests by generating and executing test scripts directly from feature specs and application exploration. The tool discovers UI routes and fixtures at runtime, reusing the application's ephemeral environment for deterministic end-to-end QA testing.

How do I run integration tests in a modular monorepo after implementing a feature?

Run integration tests in a modular monorepo by executing existing tests stored in module-local __integration__ directories. The tool validates changes against the active application, reports failures, and provides artifact-based diagnosis for reliable QA results.

Does this Playwright test generation tool work with TypeScript monorepos?

Yes, Playwright test generation works with TypeScript monorepos by adhering to the repository's existing Playwright configuration. It supports modular apps by creating module-local test directories and discovering UI routes at runtime for deterministic execution.

What's the best way to generate end-to-end QA tests without manual scripting?

Generate end-to-end QA tests without manual scripting by exploring the running application to automatically create executable Playwright tests. This approach enforces deterministic execution by reusing the ephemeral environment and discovering fixtures dynamically.

Can I generate documentation for Playwright test scenarios alongside the tests?

Yes, you can optionally produce a markdown scenario file for documentation when generating Playwright tests. This feature runs alongside test creation, providing readable documentation of the integration testing scenarios executed against the application.

Why are my Playwright integration tests failing across different application modules?

Playwright integration tests may fail across modules if runtime UI routes and fixtures are not properly discovered or the repository's configuration is not followed. The tool addresses this by enforcing deterministic execution and providing artifact-based failure diagnosis.