hospitality-smoke-test

Run Playwright end-to-end smoke tests for the hospitality app before deployment.

1|Updated Jan 24, 2026
One-click install
npx skills add https://github.com/mattbutlerengineering/mattbutlerengineering --skill hospitality-smoke-test
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: hospitality-smoke-test
Source: https://github.com/mattbutlerengineering/mattbutlerengineering/tree/main/apps/hospitality/.claude/skills/hospitality-smoke-test
Command: npx skills add https://github.com/mattbutlerengineering/mattbutlerengineering --skill hospitality-smoke-test

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It prevents broken hospitality deployments by verifying the app works through its Playwright end-to-end smoke tests before release.

Core Features & Use Cases

  • Pre-deploy E2E gate: Runs the hospitality app’s Playwright test suite as a release readiness check.
  • Regression detection: Validates critical user flows so issues are caught early rather than after deployment.
  • ACMM audit verification: Executes the project audit script for the apps/hospitality scope to support compliance/review workflows.
  • Use case: Before deploying a change to the hospitality app, run this smoke test to confirm the core experience still passes end-to-end in CI-like conditions.

Quick Start

Run the hospitality e2e smoke test using the command: pnpm --dir apps/hospitality test:e2e.

Frequently Asked Questions about hospitality-smoke-test

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

FAQPage Schema
How do I run Playwright e2e smoke tests for a hospitality app before deploying?▼

Run Playwright e2e smoke tests for the hospitality app by executing the deterministic pnpm workspace command pnpm --dir apps/hospitality test:e2e to verify core user flows before release.

What is a pre-deploy smoke test gate in a pnpm monorepo?▼

A pre-deploy smoke test gate in a pnpm monorepo executes targeted end-to-end tests to validate critical user flows, ensuring deployment readiness and catching regressions before changes reach production.

Can I run an audit script alongside Playwright e2e tests in the hospitality workspace?▼

Yes, after running Playwright e2e tests, you can execute the ACMM audit script for the apps/hospitality scope to support compliance and review workflows within the project.

Does this smoke test work with my existing pnpm monorepo setup?▼

The smoke test works with a pnpm monorepo by targeting the apps/hospitality workspace using the command pnpm --dir apps/hospitality test:e2e, requiring no additional dependencies to execute.

Why run end-to-end smoke tests instead of unit tests before a hospitality app deployment?▼

End-to-end smoke tests validate critical user flows through the actual application interface, catching integration regressions that unit tests miss, providing deployment confidence in CI-like conditions before release.

What are the limitations of using Playwright e2e tests as a pre-deploy gate?▼

Using Playwright e2e tests as a pre-deploy gate validates only the hospitality app workspace scope via specific pnpm commands, limiting coverage to configured end-to-end flows rather than full regression depth.