mirror of
https://github.com/jlengrand/coolify.git
synced 2026-03-10 08:11:23 +00:00
10 lines
200 B
PHP
10 lines
200 B
PHP
<?php
|
|
|
|
use App\Livewire\TeamSharedVariablesIndex;
|
|
use Livewire\Livewire;
|
|
|
|
it('renders successfully', function () {
|
|
Livewire::test(TeamSharedVariablesIndex::class)
|
|
->assertStatus(200);
|
|
});
|