snipe_it/tests/Feature/Console/OptimizeTest.php
2024-08-06 20:25:22 +00:00

18 lines
381 B
PHP

<?php
namespace Tests\Feature\Console;
use Tests\TestCase;
final class OptimizeTest extends TestCase
{
public function testOptimizeSucceeds(): void
{
$this->beforeApplicationDestroyed(function () {
$this->artisan('config:clear');
$this->artisan('route:clear');
});
$this->artisan('optimize')->assertSuccessful();
}
}