Skip to content

Commit

Permalink
Moved test database from memory to file
Browse files Browse the repository at this point in the history
  • Loading branch information
shooka committed Sep 20, 2016
1 parent bebc8f8 commit 941dac5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ protected function getEnvironmentSetUp($app)
$app['config']->set('database.default', 'testbench');
$app['config']->set('database.connections.testbench', [
'driver' => 'sqlite',
'database' => ':memory:',
'database' => __DIR__ . '/test.db',
'prefix' => '',
]);
}
Expand Down
Binary file added tests/test.db
Binary file not shown.

0 comments on commit 941dac5

Please sign in to comment.