File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
namespace GeneaLabs \LaravelModelCaching \Tests ;
4
6
5
7
use GeneaLabs \LaravelModelCaching \Tests \Fixtures \Nova \AuthorResource ;
6
8
use GeneaLabs \LaravelModelCaching \Tests \Fixtures \Nova \BookResource ;
7
9
use GeneaLabs \LaravelModelCaching \Tests \Fixtures \Nova \StoreResource ;
8
10
use GeneaLabs \LaravelModelCaching \Tests \Fixtures \Providers \NovaServiceProvider ;
9
11
use Illuminate \Contracts \Auth \Authenticatable ;
12
+ use Illuminate \Support \Facades \Artisan ;
13
+ use Inertia \ServiceProvider ;
10
14
use Laravel \Nova \Nova ;
11
15
use Laravel \Nova \NovaCoreServiceProvider ;
12
16
@@ -34,6 +38,9 @@ public function setUp(): void
34
38
});
35
39
36
40
$ this ->authenticate ();
41
+ $ this ->withoutMiddleware ();
42
+
43
+ Artisan::call ("nova:publish " );
37
44
}
38
45
39
46
protected function authenticate ()
@@ -54,6 +61,7 @@ protected function getPackageProviders($app)
54
61
NovaCoreServiceProvider::class,
55
62
\Laravel \Nova \NovaServiceProvider::class,
56
63
NovaServiceProvider::class,
64
+ ServiceProvider::class,
57
65
]
58
66
);
59
67
}
You can’t perform that action at this time.
0 commit comments