We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cad7bcd commit b79cce1Copy full SHA for b79cce1
phpunit.xml
@@ -11,9 +11,10 @@
11
</testsuites>
12
<php>
13
<env name="APP_ENV" value="testing"/>
14
- <env name="CACHE_DRIVER" value="array"/>
+ <env name="APP_DEBUG" value="false"/>
15
+ <env name="CACHE_STORE" value="array"/>
16
<env name="SESSION_DRIVER" value="array"/>
- <env name="QUEUE_DRIVER" value="sync"/>
17
+ <env name="QUEUE_CONNECTION" value="sync"/>
18
</php>
19
<source>
20
<include>
tests/Http/Api/ApiFormUploadThumbnailControllerTest.php
@@ -6,6 +6,7 @@
6
beforeEach(function () {
7
sharp()->config()->declareEntity(PersonEntity::class);
8
login();
9
+ Storage::fake('public');
10
});
it('returns thumbnail', function () {
0 commit comments