Files
filament/tests/helpers.php
T
Dan Harrin 083a03bfb5 wip
2023-07-25 12:38:22 +01:00

14 lines
293 B
PHP

<?php
namespace Filament\Tests;
use Livewire\Features\SupportTesting\Testable;
use Livewire\Livewire;
if (! function_exists('\Filament\Tests\livewire')) {
function livewire(string $component, array $props = []): Testable
{
return Livewire::test($component, $props);
}
}