Skip to content

Commit

Permalink
Update TestCase.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphjsmit committed Feb 17, 2023
1 parent 2915aeb commit 9cfddb1
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ protected function setUp(): void
parent::setUp();
}

protected function getPackageProviders($app)
protected function getPackageProviders(mixed $app): array
{
return [
FilamentComponentsServiceProvider::class,
Expand All @@ -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();
*/
//
}
}

0 comments on commit 9cfddb1

Please sign in to comment.