Skip to content

Commit b79cce1

Browse files
committed
Update docs
1 parent cad7bcd commit b79cce1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

phpunit.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
</testsuites>
1212
<php>
1313
<env name="APP_ENV" value="testing"/>
14-
<env name="CACHE_DRIVER" value="array"/>
14+
<env name="APP_DEBUG" value="false"/>
15+
<env name="CACHE_STORE" value="array"/>
1516
<env name="SESSION_DRIVER" value="array"/>
16-
<env name="QUEUE_DRIVER" value="sync"/>
17+
<env name="QUEUE_CONNECTION" value="sync"/>
1718
</php>
1819
<source>
1920
<include>

tests/Http/Api/ApiFormUploadThumbnailControllerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
beforeEach(function () {
77
sharp()->config()->declareEntity(PersonEntity::class);
88
login();
9+
Storage::fake('public');
910
});
1011

1112
it('returns thumbnail', function () {

0 commit comments

Comments
 (0)