Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Dec 10, 2023
1 parent cd5f631 commit 3812b21
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
includes:
- vendor/nunomaduro/larastan/extension.neon
- vendor/larastan/larastan/extension.neon
- vendor/thecodingmachine/phpstan-safe-rule/phpstan-safe-rule.neon

parameters:
Expand Down
21 changes: 21 additions & 0 deletions tests/Unit/Commands/SetupDocumentationT.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?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
{
$this->artisan('scribe:setup', ['--clean' => true, '--force' => true, '-q' => true])
->assertExitCode(0);
}
}
21 changes: 0 additions & 21 deletions tests/Unit/Commands/SetupDocumentationTest.php

This file was deleted.

0 comments on commit 3812b21

Please sign in to comment.