Files
2026-03-16 17:40:57 -07:00

20 lines
413 B
PHP

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