Move tests from `spec` to `tests` folder, fix test runner messages

This commit is contained in:
Alex Palaistras 2016-02-28 21:40:53 +00:00
parent 1e4b725789
commit 5dbcfb1546
3 changed files with 1 additions and 3 deletions

View File

@ -40,7 +40,7 @@ _EOF_
echo -e ">> ${COLOR_WHITE}Executing tests...${COLOR_RESET}"
for file in ${@:-${ROOT}/spec/*.scss}
for file in ${@:-${ROOT}/tests/*.scss}
do
# Check if file exists and is readable.
if [ ! -f "${file}" ]
@ -71,8 +71,6 @@ do
echo -e "${COLOR_GREEN}OK${COLOR_RESET}"
fi
echo -e ">> ${COLOR_WHITE}End of test for file '$(basename ${file})'${COLOR_RESET}"
done
# Echo total results.