Skip to content

Commit

Permalink
Skip Livewire 3 in tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Mar 12, 2024
1 parent 757b0a1 commit 7d38efd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/Commands/Make/MakeLivewireTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use Livewire\Livewire;
use Livewire\LivewireManager;
use Livewire\LivewireServiceProvider;
use Livewire\Mechanisms\Mechanism;

class MakeLivewireTest extends TestCase
{
Expand All @@ -22,6 +23,10 @@ protected function setUp(): void
if (! class_exists(Livewire::class)) {
$this->markTestSkipped('Livewire is not installed.');
}

if (class_exists(Mechanism::class)) {
$this->markTestSkipped('Livewire 3 is not yet supported.');
}
}

public function test_it_overrides_the_default_commands(): void
Expand Down

0 comments on commit 7d38efd

Please sign in to comment.