mirror of
https://github.com/archtechx/livewire-access.git
synced 2025-12-12 20:34:03 +00:00
16 lines
317 B
PHP
16 lines
317 B
PHP
<?php
|
|
|
|
namespace Lean\LivewireAccess\Tests;
|
|
|
|
use Livewire\LivewireServiceProvider;
|
|
use Orchestra\Testbench\TestCase as TestbenchTestCase;
|
|
|
|
class TestCase extends TestbenchTestCase
|
|
{
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [
|
|
LivewireServiceProvider::class,
|
|
];
|
|
}
|
|
}
|