Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mckenziearts committed Aug 17, 2024
1 parent 5442bbf commit 3288e90
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions tests/src/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Livewire\LivewireServiceProvider;
use Mckenziearts\BladeUntitledUIIcons\BladeUntitledUIIconsServiceProvider;
use Orchestra\Testbench\Attributes\WithMigration;
use Orchestra\Testbench\Concerns\WithLaravelMigrations;
use Orchestra\Testbench\Concerns\WithWorkbench;
use Orchestra\Testbench\TestCase as BaseTestCase;
use Shopper\Core\CoreServiceProvider;
Expand All @@ -27,23 +27,16 @@
use Spatie\Permission\PermissionServiceProvider;
use TailwindMerge\Laravel\TailwindMergeServiceProvider;

#[WithMigration]
abstract class TestCase extends BaseTestCase
{
use RefreshDatabase;
use WithWorkbench;
use WithLaravelMigrations;

protected bool $seed = true;

protected string $seeder = ShopperSeeder::class;

protected function setUp(): void
{
parent::setUp();

$this->loadLaravelMigrations();
}

protected function getPackageProviders($app): array
{
return [
Expand Down

0 comments on commit 3288e90

Please sign in to comment.