diff --git a/tests/TestCase.php b/tests/TestCase.php index f05ae66..47d344e 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -12,6 +12,11 @@ abstract class TestCase extends BaseTestCase // The suite must not depend on a built manifest. $this->withoutVite(); + + // Jobs that pin themselves to the provisioning connection bypass + // QUEUE_CONNECTION, so the suite would reach for Redis — infrastructure + // a test run must not depend on. + config(['queue.connections.provisioning' => ['driver' => 'sync']]); } // }