diff --git a/docs/04-testing.md b/docs/04-testing.md index 56ab1e0..4110b01 100644 --- a/docs/04-testing.md +++ b/docs/04-testing.md @@ -32,24 +32,17 @@ Then, copy the following template to use an in-memory sqlite database and enable ```xml title="phpunit.xml" - - - src/ - - + ./tests/Unit @@ -62,7 +55,13 @@ Then, copy the following template to use an in-memory sqlite database and enable + + + src/ + + + ``` Note the dummy `APP_KEY` in the example above. This environment variable is consumed by [Laravel's encrypter](https://laravel.com/docs/8.x/encryption#using-the-encrypter), which your tests might be making use of. For most cases, the dummy value will be sufficient. However, you are free to either change this value to reflect an actual app key (of your Laravel application) or leave it off entirely if your test suite does not interact with the encrypter.