From aaf80244d70f789e8092d9538156aa8c2306472b Mon Sep 17 00:00:00 2001 From: denshooter Date: Wed, 15 Oct 2025 16:09:19 +0200 Subject: [PATCH] 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 --- .githooks/pre-push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.githooks/pre-push b/.githooks/pre-push index 80ab572..c862a64 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -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."