mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-30 17:07:25 +08:00
14 lines
293 B
PHP
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);
|
|
}
|
|
}
|