Executes smoke tests validating critical user journeys like registration, authentication, checkout, search, and profile management with performance SLAs for release workflows.
npx claudepluginhub fortiumpartners/ai-meshThis skill uses the workspace's default tool permissions.
**Quick Reference** - Load this first for fast context (~2KB)
Tests essential user journeys like purchase flows and logins from project config using navigate/verify/input steps with personas. Ensures critical paths pass before deployments.
Executes API smoke tests validating health endpoints, CRUD operations, auth, search, response times, and performance SLAs across staging/production during releases and deployments.
Runs fast smoke tests validating critical paths like health checks, UI, auth, and APIs post-deployment using curl, Playwright, or Bash scripts.
Share bugs, ideas, or general feedback.
Quick Reference - Load this first for fast context (~2KB)
Execute comprehensive critical user journey smoke tests to validate end-to-end business flows during release workflows.
const { SmokeTestCriticalPaths } = require('./scripts/execute-journeys.js');
const tester = new SmokeTestCriticalPaths({
baseUrl: 'https://staging.example.com',
journeys: [
'registration',
'checkout',
'search'
]
});
const result = await tester.executeTests({
environment: 'staging'
});
if (result.passed) {
console.log('✅ Critical path tests passed');
}
const SLA_TARGETS = {
registration: 5000, // Registration flow: ≤5s
checkout: 8000, // Checkout flow: ≤8s
search: 3000, // Search flow: ≤3s
profile: 4000 // Profile management: ≤4s
};
Pass: All critical paths must complete successfully
Fail: Any critical path failure blocks deployment
Load: skills/smoke-test-critical-paths/REFERENCE.md (~10KB)