We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34394e4 commit 22e0e84Copy full SHA for 22e0e84
tests/HandleImportsTest.php
@@ -1,6 +1,8 @@
1
<?php
2
3
use Coderflex\LaravelCsv\Http\Livewire\HandleImports;
4
+use Coderflex\LaravelCsv\Tests\Models\User;
5
+
6
use function Pest\Livewire\livewire;
7
8
it('renders handle imports component', function () {
@@ -9,6 +11,8 @@
9
11
});
10
12
13
it('renders handle imports component with model', function () {
14
+ $this->actingAs(User::factory()->create());
15
16
$model = Customer::class;
17
18
livewire(HandleImports::class, [
0 commit comments