From 8848337d2fcc4c6811a9e967ab3240255bb034ac Mon Sep 17 00:00:00 2001 From: Prakhar Gurunani Date: Wed, 31 Jul 2024 02:36:23 +0530 Subject: [PATCH] comment nodejs tests --- test.sh | 56 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) 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"