diff --git a/.env.testing b/.env.testing index 65dcbf07..86b3b38f 100644 --- a/.env.testing +++ b/.env.testing @@ -4,6 +4,8 @@ APP_KEY=base64:pdjaSqs7dDu8SdYCQzsayBAqeMC+85fmo3bpeBCCT94= APP_DEBUG=true APP_URL=http://localhost +CACHE_STORE=array + WEBAUTHN_NAME=TestApp WEBAUTHN_ID=null WEBAUTHN_USER_VERIFICATION=discouraged diff --git a/composer.json b/composer.json index 05691038..e2354fa6 100644 --- a/composer.json +++ b/composer.json @@ -98,16 +98,24 @@ ], "test": [ "php artisan config:clear", - "php artisan test --parallel" + "vendor/bin/phpunit", + "php artisan config:clear" + ], + "test-para": [ + "php artisan config:clear", + "php artisan test --parallel", + "php artisan config:clear" ], "test-mysql": [ "php artisan config:clear", - "vendor/bin/phpunit -c phpunit-mysql.xml" + "vendor/bin/phpunit -c phpunit-mysql.xml", + "php artisan config:clear" ], "test-coverage-html": [ "@putenv XDEBUG_MODE=coverage", "php artisan config:clear", - "vendor/bin/phpunit --coverage-html tests/Coverage/" + "vendor/bin/phpunit --coverage-html tests/Coverage/", + "php artisan config:clear" ], "ide-helper": [ "php artisan config:clear",