diff --git a/tests/insert-icon-test b/tests/insert-icon-test index d0c9bdf..ff32c03 100755 --- a/tests/insert-icon-test +++ b/tests/insert-icon-test @@ -84,7 +84,7 @@ declare -A messages_amended=( ["chore(scope): 🧹 lorem ipsum dolor sit amet"]="chore(scope): 🧹 lorem ipsum dolor sit amet" ) -echo -e "\e[1mInsert Icon Tests\e[21m:" +echo -e "\e[1mInsert Icon Tests\e[0m:" echo -e "\n> Test messages without scope:" for message in "${!messages_noscope[@]}"; do assert_equals "${messages_noscope["${message}"]}" "$("$(bin_dir)"/insert-icon "${message}")" diff --git a/tests/run b/tests/run index 81c038b..464451e 100755 --- a/tests/run +++ b/tests/run @@ -13,7 +13,8 @@ lib_dir() for testfile in "$(tests_dir)"/*-test; do . "${testfile}" + echo -e "\n----------\n" done PASSED="$((TESTS - ERRORS))" -echo -e "-- \n${PASSED} passed tests / ${TESTS} tests - ${ERRORS} errors." +echo -e "${PASSED} passed tests / ${TESTS} tests - ${ERRORS} errors."