From 9cfddb197503f1a4bde6241b11ee457d9d2b4806 Mon Sep 17 00:00:00 2001 From: "Ralph J. Smit" <59207045+ralphjsmit@users.noreply.github.com> Date: Fri, 17 Feb 2023 17:53:56 +0100 Subject: [PATCH] Update TestCase.php --- tests/TestCase.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 59585f9..66cc7ef 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -15,7 +15,7 @@ protected function setUp(): void parent::setUp(); } - protected function getPackageProviders($app) + protected function getPackageProviders(mixed $app): array { return [ FilamentComponentsServiceProvider::class, @@ -25,12 +25,8 @@ protected function getPackageProviders($app) ]; } - public function getEnvironmentSetUp($app) + public function getEnvironmentSetUp($app): void { - config()->set('database.default', 'testing'); - /* - $migration = include __DIR__.'/../database/migrations/create_laravel-filament-components_table.php.stub'; - $migration->up(); - */ + // } }