Files
larapaper/tests/Feature/Console/StorageS3InitCommandTest.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.');
});