no camel case in filenames

This commit is contained in:
Girish Ramakrishnan
2022-10-14 08:22:04 +02:00
parent eb5c90a2e7
commit 7cb326cfff
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -74,7 +74,7 @@
"nyc": "^15.1.0"
},
"scripts": {
"test": "./runTests",
"test": "./run-tests",
"postmerge": "/bin/true",
"precommit": "/bin/true",
"prepush": "npm test",
+2 -2
View File
@@ -6,7 +6,7 @@ readonly source_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
readonly DATA_DIR="${HOME}/.cloudron_test"
readonly DEFAULT_TESTS="./src/test/*-test.js ./src/routes/test/*-test.js"
! "${source_dir}/src/test/checkInstall" && exit 1
! "${source_dir}/src/test/check-install" && exit 1
# cleanup old data dirs some of those docker container data requires sudo to be removed
echo "=> Provide root password to purge any leftover data in ${DATA_DIR} and load apparmor profile:"
@@ -39,7 +39,7 @@ if [[ -z ${FAST+x} ]]; then
echo "=> Delete all docker containers first"
docker ps -qa --filter "label=isCloudronManaged" | xargs --no-run-if-empty docker rm -f
docker rm -f mysql-server
echo "==> To skip this run with: FAST=1 ./runTests"
echo "==> To skip this run with: FAST=1 ./run-tests"
else
echo "==> WARNING!! Skipping docker container cleanup, the database might not be pristine!"
fi