28 lines
711 B
PHP
28 lines
711 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Commands;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
// use PHPUnit\Framework\Attributes\RunClassInSeparateProcess;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
// #[RunClassInSeparateProcess]
|
|
class SetupDocumentationTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
#[Test]
|
|
public function it_run_scribe_setup(): void
|
|
{
|
|
if (version_compare(phpversion(), '8.3.0', '>=')) {
|
|
$this->markTestSkipped('This test is skipped for PHP 8.3.0 or higher');
|
|
|
|
return;
|
|
}
|
|
|
|
// $this->artisan('scribe:setup', ['--clean' => true, '--force' => true, '-q' => true])
|
|
// ->assertExitCode(0);
|
|
}
|
|
}
|