@@ -2775,6 +2775,11 @@ public function testRunDetailViewCountsOpenMixedBarrierWaitsAndExposesMixedGroup
27752775
27762776 public function testRunDetailViewIncludesTaskBackedTimerWaitForSelectedRun (): void
27772777 {
2778+ config ()->set ('queue.default ' , 'redis ' );
2779+ config ()
2780+ ->set ('queue.connections.redis.driver ' , 'redis ' );
2781+ Queue::fake ();
2782+
27782783 $ workflow = WorkflowStub::make (TestTimerWorkflow::class, 'detail-timer ' );
27792784 $ workflow ->start (60 );
27802785 $ runId = $ workflow ->runId ();
@@ -2813,6 +2818,11 @@ public function testRunDetailViewIncludesTaskBackedTimerWaitForSelectedRun(): vo
28132818
28142819 public function testRunDetailViewKeepsTimerWaitAndTaskMetadataWhenTimerRowDrifts (): void
28152820 {
2821+ config ()->set ('queue.default ' , 'redis ' );
2822+ config ()
2823+ ->set ('queue.connections.redis.driver ' , 'redis ' );
2824+ Queue::fake ();
2825+
28162826 $ workflow = WorkflowStub::make (TestTimerWorkflow::class, 'detail-timer-history ' );
28172827 $ workflow ->start (60 );
28182828 $ runId = $ workflow ->runId ();
@@ -3017,6 +3027,11 @@ public function testRunDetailViewPrefersOpenTimerTaskOverHistoricalClosedTimerTa
30173027
30183028 public function testRunDetailViewMarksRepairNeededTimerWaitAsNotTaskBacked (): void
30193029 {
3030+ config ()->set ('queue.default ' , 'redis ' );
3031+ config ()
3032+ ->set ('queue.connections.redis.driver ' , 'redis ' );
3033+ Queue::fake ();
3034+
30203035 $ workflow = WorkflowStub::make (TestTimerWorkflow::class, 'detail-timer-repair ' );
30213036 $ workflow ->start (60 );
30223037 $ runId = $ workflow ->runId ();
0 commit comments