Testing needs to have the database seeded

This commit is contained in:
Deon George
2021-07-16 16:55:26 +10:00
parent a0d3c8d8ab
commit 32888533c1
5 changed files with 74 additions and 46 deletions

View File

@@ -1,16 +1,19 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// $this->call(UsersTableSeeder::class);
}
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
//$this->call(InitialSetupSeeder::class);
$this->call(NodeHierarchy::class);
}
}