mirror of
https://github.com/usetrmnl/larapaper.git
synced 2026-08-13 14:28:54 -07:00
11 lines
298 B
PHP
11 lines
298 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
test('storage s3 init errors when public disk is not s3', function (): void {
|
|
config(['filesystems.disks.public.driver' => 'local']);
|
|
|
|
$this->artisan('storage:s3:init')
|
|
->expectsOutput('The public disk is not configured to use the S3 driver.');
|
|
});
|