Make sure the /javascript/ url’s are ignored.

This commit is contained in:
James Cole
2017-02-12 16:50:35 +01:00
parent 3399b133ae
commit ec146d4cbe
10 changed files with 172 additions and 22 deletions

10
test.sh
View File

@@ -51,9 +51,6 @@ fi
# enable testing config
cp $TESTINGENV $ORIGINALENV
# clear cache:
php artisan cache:clear
# reset database (optional)
if [[ $resetTestFlag == "true" ]]
then
@@ -85,6 +82,13 @@ echo "Copy test database over original"
# take database from copy:
cp $DATABASECOPY $DATABASE
echo "clear caches and what-not.."
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan twig:clean
php artisan view:clear
# run PHPUnit
if [[ $testflag == "" ]]
then