diff --git a/config/app.php b/config/app.php index 2576a8984..f462e1cea 100644 --- a/config/app.php +++ b/config/app.php @@ -441,4 +441,17 @@ 'safeTld' => env('DEBUG_KIT_SAFE_TLD', null), 'ignoreAuthorization' => env('DEBUG_KIT_IGNORE_AUTHORIZATION', false), ], + + /** + * TestSuite configuration. + * + * ## Options + * + * - `errorLevel` - Defaults to E_ALL. + * - `fixtureStrategy` - Defaults to TruncateStrategy. Can be set to any class implementing FixtureStrategyInterface. + */ + 'TestSuite' => [ + 'errorLevel' => null, + 'fixtureStrategy' => null, + ], ];