formatting

This commit is contained in:
Taylor Otwell 2018-02-13 07:34:47 -06:00
parent b67d08ccd0
commit 3014f1703a
1 changed files with 2 additions and 2 deletions

View File

@ -18,10 +18,10 @@ An `ExampleTest.php` file is provided in both the `Feature` and `Unit` test dire
When running tests via `phpunit`, Laravel will automatically set the configuration environment to `testing` because of the environment variables defined in the `phpunit.xml` file. Laravel also automatically configures the session and cache to the `array` driver while testing, meaning no session or cache data will be persisted while testing.
You may also create a `.env.testing` file. This file will override the `.env` file when running PHPUnit tests or executing Artisan commands with the `--env=testing` option.
You are free to define other testing environment configuration values as necessary. The `testing` environment variables may be configured in the `phpunit.xml` file, but make sure to clear your configuration cache using the `config:clear` Artisan command before running your tests!
In addition, you may create a `.env.testing` file in the root of your project. This file will override the `.env` file's variables when running PHPUnit tests or executing Artisan commands with the `--env=testing` switch.
<a name="creating-and-running-tests"></a>
## Creating & Running Tests