diff options
Diffstat (limited to 'main/app/sprinkles/core/config/testing.php')
-rwxr-xr-x | main/app/sprinkles/core/config/testing.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/app/sprinkles/core/config/testing.php b/main/app/sprinkles/core/config/testing.php new file mode 100755 index 0000000..7da03c2 --- /dev/null +++ b/main/app/sprinkles/core/config/testing.php @@ -0,0 +1,23 @@ +<?php + + /** + * Default testing config file for UserFrosting. You may override/extend this in your site's configuration file to customize deploy settings. + * + */ + + return [ + 'cache' => [ + 'illuminate' => [ + 'default' => 'array', + ] + ], + 'db' => [ + 'test_integration' => [ + 'driver' => 'sqlite', + 'database' => ':memory:', + ] + ], + 'settings' => [ + 'displayErrorDetails' => false + ] + ]; |