Ante de criar o arquivo .env.testing o teste estava funcionando normal. depois que criei ele comecei ater esse erro:
PHPUnit 7.5.20 by Sebastian Bergmann and contributors.
....E 5 / 5 (100%)
Time: 345 ms, Memory: 22.00 MB
There was 1 error:
1) Tests\Feature\ExampleTest::testBasicTest
RuntimeException: No application encryption key has been specified.
/var/www/html/cursodephp/aulas/controle-de-series/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:44
....
ERRORS!
Tests: 5, Assertions: 9, Errors: 1.
Script vendor/bin/phpunit handling the run-test event returned with error code 2
O erro é no ExampleTest.php eu não mexi nesse arquivo ele está do jeito que foi criado... Esse teste deviria passar já a rota / mostra a tela de login.
Route::get('/', 'EntrarController@index');
Eu sei que curso não e focado em teste mas queria entender o porque do erro.