mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 18:44:03 +00:00
remove import of Foundation\Vite in tests
This commit is contained in:
parent
d31a319cc7
commit
596c47329a
1 changed files with 1 additions and 2 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use Illuminate\Foundation\Vite as FoundationVite;
|
|
||||||
use Stancl\Tenancy\Features\ViteBundler;
|
use Stancl\Tenancy\Features\ViteBundler;
|
||||||
use Stancl\Tenancy\Tests\Etc\Tenant;
|
use Stancl\Tenancy\Tests\Etc\Tenant;
|
||||||
use Stancl\Tenancy\Tests\TestCase;
|
use Stancl\Tenancy\Tests\TestCase;
|
||||||
|
|
@ -19,7 +18,7 @@ class ViteBundlerTest extends TestCase
|
||||||
|
|
||||||
$vite = app(\Illuminate\Foundation\Vite::class);
|
$vite = app(\Illuminate\Foundation\Vite::class);
|
||||||
|
|
||||||
$this->assertInstanceOf(FoundationVite::class, $vite);
|
$this->assertInstanceOf(\Illuminate\Foundation\Vite::class, $vite);
|
||||||
$this->assertNotInstanceOf(StanclVite::class, $vite);
|
$this->assertNotInstanceOf(StanclVite::class, $vite);
|
||||||
|
|
||||||
config([
|
config([
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue