From 4c7fff73ecf88a6471e5a812ff8cc02a538fda60 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 20 Feb 2023 09:55:36 +0100 Subject: [PATCH] Delete ViteBundlerTest --- tests/Features/ViteBundlerTest.php | 34 ------------------------------ 1 file changed, 34 deletions(-) delete mode 100644 tests/Features/ViteBundlerTest.php diff --git a/tests/Features/ViteBundlerTest.php b/tests/Features/ViteBundlerTest.php deleted file mode 100644 index 23cf164d..00000000 --- a/tests/Features/ViteBundlerTest.php +++ /dev/null @@ -1,34 +0,0 @@ -assertInstanceOf(\Illuminate\Foundation\Vite::class, $vite); - $this->assertNotInstanceOf(StanclVite::class, $vite); - - config([ - 'tenancy.features' => [ViteBundler::class], - ]); - - $tenant = Tenant::create(); - - tenancy()->initialize($tenant); - - app()->forgetInstance(\Illuminate\Foundation\Vite::class); - - $vite = app(\Illuminate\Foundation\Vite::class); - - $this->assertInstanceOf(StanclVite::class, $vite); - } -}