Skip to content

Commit

Permalink
refactor: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentauger committed Dec 2, 2024
1 parent 3a302e0 commit 6aa23db
Show file tree
Hide file tree
Showing 5 changed files with 46,280 additions and 70 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"laravel/sail": "^1.29.1",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^8.1.1",
"orangehill/iseed": "^3.0.4",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"spatie/laravel-ignition": "^2.7.0"
Expand Down
65 changes: 1 addition & 64 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public function run()
FunderSeeder::class,
RoleAndPermissionSeeder::class,
FunctionalAreaSeeder::class,
DfoSeriesJournalSeeder::class,
]);

if (config('app.env') === 'local') {
Expand All @@ -31,7 +30,8 @@ public function run()
$this->call([
LocalTestDataSeeder::class,
]);
}
$this->call(JournalsTableSeeder::class);
}
}
}
}
Loading

0 comments on commit 6aa23db

Please sign in to comment.