Skip to content

Commit a5c316f

Browse files
committed
fix for laravel seeders in tests
1 parent d48ef23 commit a5c316f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Codeception/Module/Laravel5.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public function _before(\Codeception\TestInterface $test)
188188
}
189189

190190
if ($this->config['run_database_seeder']) {
191-
$this->callArtisan('db:seed', ['--class' => $this->config['database_seeder_class']]);
191+
$this->callArtisan('db:seed', ['--class' => $this->config['database_seeder_class'], '--quiet' => true ]);
192192
}
193193
}
194194

0 commit comments

Comments
 (0)