From eaa02ef7d3100a8484e50a6646e87194bed25848 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 13 Apr 2016 01:14:23 -0700 Subject: [PATCH] More poking and hoping --- tests/TestCase.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 63f3a3e6e1..0a576e5577 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -11,8 +11,9 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase function __construct() { parent::setUp(); + parent::createApplication(); } - + /** * Creates the application. * @@ -28,7 +29,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase public function setUp() { parent::setUp(); - //Artisan::call('migrate'); + $this->app['artisan']->call('migrate'); } public function tearDown()