mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
16 lines
321 B
PHP
16 lines
321 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\SelfHostedService;
|
|
use Livewire\Volt\Volt;
|
|
|
|
it('renders services index', function () {
|
|
SelfHostedService::factory()->count(2)->create();
|
|
|
|
$component = Volt::test('services.index');
|
|
|
|
$component->assertStatus(200)
|
|
->assertSee('Self Hosted Services');
|
|
});
|