Organize test suites into unit and integration

This is the goals of project organization composing different
combinations to run any number of tests together.
This commit is contained in:
Antonio Spinelli
2023-07-03 11:08:24 -03:00
parent 6ac3cc384b
commit 7f0db0de04
19 changed files with 102 additions and 37 deletions

View File

@@ -168,6 +168,12 @@
"post-install-cmd": [
"@php artisan firefly:instructions install",
"@php artisan firefly-iii:verify-security-alerts"
],
"unit-test": [
"@php vendor/bin/phpunit -c phpunit.xml --testsuite unit"
],
"integration-test": [
"@php vendor/bin/phpunit -c phpunit.xml --testsuite integration"
]
},
"config": {