feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
378 changed files with 949 additions and 16909 deletions
Showing only changes of commit 8af56137a8 - Show all commits

View File

@ -74,7 +74,11 @@ class TestBootstrap
public function migrate(): void
{
$cmd = "{$this->baseCommand} migrate -e testing";
shell_exec($cmd);
$status = shell_exec($cmd);
if ($status !== false and $status !== null) {
$cmd = "{$this->baseCommand} seed:run -e testing";
shell_exec($cmd);
}
}
public function resetDatabase(): void