LoginSignup
4
4

More than 5 years have passed since last update.

[小ネタ]LaravelにTelescopeを追加したら、PHP Unitでエラーが出たときの対応

Last updated at Posted at 2018-12-05

問題

LaravelのPHP Unitを実行すると以下のエラーが発生

1) Tests\Feature\ExampleTest::testBasicTest
ReflectionException: Class env does not exist

/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:779
/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:658
(省略)

元々Laravelに付属しているファイルを何も変更していないのにエラーが出た。

TL; DR;

phpunit.xmlに以下を追加

phpunit.xml
<phpunit>
(省略)
    <php>
        <env name="TELESCOPE_ENABLED" value="false"/><!--追加 -->
    </php>
</phpunit>

その他

調べていると
composer dump-autoload
で、直る人もいるみたいです。

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4