**Quick Reference** - Load this first for fast context (~2KB)
Execute end-to-end smoke tests for critical user journeys like registration, checkout, and search flows. Triggers during release workflows to validate business-critical paths meet SLA targets before deployment.
/plugin marketplace add FortiumPartners/ensemble/plugin install ensemble-e2e-testing@ensembleThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/execute-journeys.jstemplates/critical-paths-config.yamlQuick 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)
Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.