3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-07 16:27:19 +00:00
Files
snipe-it/tests/Feature/Console/OptimizeTest.php
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();
}
}