diff --git a/test.sh b/test.sh index 94f8c72..8d175c6 100755 --- a/test.sh +++ b/test.sh @@ -4,34 +4,34 @@ loc="$(dirname "$0")/tests" -echo "NodeJS tests" -export LOADER_SCRIPT_PATH="$loc/node" -echo "Npm Test" -metacall npm install metacall > out.txt -if [ $? -eq 1 ]; then - cat out.txt - echo "Test suite failed" - rm out.txt - exit 1 -fi -cat out.txt -echo "Successful!!" -echo "Node metacall test" -cat "$loc/node/commands.txt" | metacall > out.txt -if [ $? -eq 1 ]; then - cat out.txt - echo "Test suite failed" - rm out.txt - exit 1 -fi -if ! grep -q "366667" out.txt; then - cat out.txt - echo "Test suite failed" - rm out.txt - exit 1 -fi -cat out.txt -echo "Successful!!" +# echo "NodeJS tests" +# export LOADER_SCRIPT_PATH="$loc/node" +# echo "Npm Test" +# metacall npm install metacall > out.txt +# if [ $? -eq 1 ]; then +# cat out.txt +# echo "Test suite failed" +# rm out.txt +# exit 1 +# fi +# cat out.txt +# echo "Successful!!" +# echo "Node metacall test" +# cat "$loc/node/commands.txt" | metacall > out.txt +# if [ $? -eq 1 ]; then +# cat out.txt +# echo "Test suite failed" +# rm out.txt +# exit 1 +# fi +# if ! grep -q "366667" out.txt; then +# cat out.txt +# echo "Test suite failed" +# rm out.txt +# exit 1 +# fi +# cat out.txt +# echo "Successful!!" echo "Python tests" export LOADER_SCRIPT_PATH="$loc/python"