Files

11 lines
298 B
PHP
Raw Permalink Normal View History

2026-04-30 13:03:32 +02:00
<?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.');
});