Update TestCase.php

This commit is contained in:
Dan Harrin
2026-02-19 22:41:56 +00:00
parent 564858efe8
commit 71d4caf813
+7
View File
@@ -62,5 +62,12 @@ abstract class TestCase extends BaseTestCase
...$app['config']->get('view.paths'),
__DIR__ . '/../resources/views',
]);
$app['config']->set('database.connections.testing', [
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => '',
'foreign_key_constraints' => true,
]);
}
}