mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-03 16:24:55 +00:00
13 lines
315 B
PHP
13 lines
315 B
PHP
<?php
|
|
|
|
use App\Livewire\Helper\FollowTheRabbit;
|
|
use Livewire\Livewire;
|
|
|
|
it('mounts the FollowTheRabbit component', function () {
|
|
Livewire::test(FollowTheRabbit::class)->assertStatus(200);
|
|
});
|
|
|
|
it('is referenced by the /kaninchenbau route', function () {
|
|
$this->get('/kaninchenbau')->assertSuccessful();
|
|
});
|