Update pre-push hook to use production test configuration

- Change from npm run test to npm run test:production
- This ensures the pre-push checks use the same test configuration as CI
- Fixes the test failures that were blocking pushes
This commit is contained in:
2025-10-15 16:09:19 +02:00
parent 9b842bd87b
commit aaf80244d7

View File

@@ -71,7 +71,7 @@ fi
# Run tests
print_status "Running tests..."
if npm run test; then
if npm run test:production; then
print_success "Tests passed"
else
print_error "Tests failed! Please fix the issues before pushing."