diff --git a/tests/TestCase.php b/tests/TestCase.php index d6a6e2b..076492b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -71,6 +71,16 @@ protected function getPackageAliases($app) ]; } + /** + * Define database migrations. + * + * @return void + */ + protected function defineDatabaseMigrations() + { + $this->loadMigrationsFrom(__DIR__.'/Stubs/database/migrations'); + } + /** * Mock an instance of an object in the container. *