From 118e38d8441a97f71aa291f438000e73d8705f53 Mon Sep 17 00:00:00 2001 From: mscherer Date: Wed, 23 Apr 2025 13:50:18 +0200 Subject: [PATCH 1/2] TestSuite configuration. --- config/app.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/app.php b/config/app.php index 2576a8984..c9df6c869 100644 --- a/config/app.php +++ b/config/app.php @@ -441,4 +441,15 @@ 'safeTld' => env('DEBUG_KIT_SAFE_TLD', null), 'ignoreAuthorization' => env('DEBUG_KIT_IGNORE_AUTHORIZATION', false), ], + + /** + * TestSuite configuration. + * + * ## Options + * + * - `fixtureStrategy` - Defaults to TruncateStrategy. Can be set to any class implementing FixtureStrategyInterface. + */ + 'TestSuite' => [ + 'fixtureStrategy' => null, + ], ]; From f6dfc572700720422ef19bced81624ab1425adc0 Mon Sep 17 00:00:00 2001 From: mscherer Date: Wed, 23 Apr 2025 15:42:37 +0200 Subject: [PATCH 2/2] TestSuite configuration. --- config/app.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/app.php b/config/app.php index c9df6c869..f462e1cea 100644 --- a/config/app.php +++ b/config/app.php @@ -447,9 +447,11 @@ * * ## Options * + * - `errorLevel` - Defaults to E_ALL. * - `fixtureStrategy` - Defaults to TruncateStrategy. Can be set to any class implementing FixtureStrategyInterface. */ 'TestSuite' => [ + 'errorLevel' => null, 'fixtureStrategy' => null, ], ];