diff --git a/test/support/test_helper.sh b/test/support/test_helper.sh index bf371d0..9838938 100644 --- a/test/support/test_helper.sh +++ b/test/support/test_helper.sh @@ -3,6 +3,13 @@ orig_cwd="$PWD" # Load SCM Breeze helpers source "$scmbDir/lib/git/helpers.sh" +if [ -z "$(git config --global user.email)" ]; then + git config --global user.email "testuser@example.com" +fi +if [ -z "$(git config --global user.name)" ]; then + git config --global user.name "Test User" +fi + # # Test helpers #-----------------------------------------------------------------------------