snipe-it/tests/Feature/Console/OptimizeTest.php
2024-07-13 16:36:14 +02:00

15 lines
253 B
PHP

<?php
namespace Tests\Feature\Console;
use Illuminate\Support\Facades\Artisan;
use Tests\TestCase;
class OptimizeTest extends TestCase
{
public function testOptimizeSucceeds()
{
$this->artisan('optimize')->assertSuccessful();
}
}