name: gate-5-test-execution description: Gate 5 validation: Test execution and 100% pass rate requirement
Gate 5: Test Execution
STOP AND CHECK:
# All tests must pass
npm test
echo "Exit code: $?"
# Must be 0
# No failures
npm test 2>&1 | grep -i "fail"
# Must return nothing
PROCEED ONLY IF:
- ✅ All new tests pass
- ✅ No regression in existing tests
- ✅ Zero test failures
- ✅ Coverage maintained or improved
IF FAILED: Fix failing tests before building.