diff --git a/tests/bash/03_cypress.sh b/tests/bash/03_cypress.sh
index 5e33518a241cfa574829541db050aa8963ade83d..904036c39514b2f72a8579f5ab072ac179ee3d7e 100755
--- a/tests/bash/03_cypress.sh
+++ b/tests/bash/03_cypress.sh
@@ -3,6 +3,9 @@
 # exit on error
 set -e
 
+#Clear out folder if present
+rm -rf cypress-tests/
+#Create folder for cypress tests
 mkdir -p cypress-tests/
 
 #Cloning core
@@ -40,4 +43,4 @@ do
     echo "Running cypress tests in ${dir}"
     cypress run --project "${dir}"tests
   fi
-done
\ No newline at end of file
+done