diff --git a/tests/emscripten/test.sh b/tests/emscripten/test.sh
index 56ebab63..758345bf 100755
--- a/tests/emscripten/test.sh
+++ b/tests/emscripten/test.sh
@@ -7,7 +7,7 @@ configuration=debug
 platform=x64
 jsinterp=node
 
-if [ $CI = "true" ]; then
+if [ "$CI" = "true" ]; then
     red=""
     green=""
     reset=""
diff --git a/tests/napi/test.sh b/tests/napi/test.sh
index 484bcdc5..66b8e7d1 100755
--- a/tests/napi/test.sh
+++ b/tests/napi/test.sh
@@ -5,7 +5,7 @@ rootdir="$dir/../.."
 configuration=Release
 platform=x64
 
-if [ $CI = "true" ]; then
+if [ "$CI" = "true" ]; then
     red=""
     green=""
     reset=""
diff --git a/tests/quickjs/test.sh b/tests/quickjs/test.sh
index 21436ab8..50c818cb 100755
--- a/tests/quickjs/test.sh
+++ b/tests/quickjs/test.sh
@@ -35,5 +35,4 @@ echo
 
 echo "${green}Executing JS tests with QuickJS${reset}"
 cp $dir/gen/bin/$configuration/libtest.so $dir
-#cp $dir/gen/bin/$configuration/libtest.dylib $dir
 $jsinterp --std $dir/test.js
\ No newline at end of file
diff --git a/tests/ts/test.sh b/tests/ts/test.sh
index e2f279d9..bf3de8de 100755
--- a/tests/ts/test.sh
+++ b/tests/ts/test.sh
@@ -7,7 +7,7 @@ configuration=debug
 platform=x64
 jsinterp="$rootdir/deps/quickjs/qjs-debug"
 
-if [ $CI = "true" ]; then
+if [ "$CI" = "true" ]; then
     red=""
     green=""
     reset=""