From c6ce7da01c23ad8bc63b46d8f4f3709dc0fb119b Mon Sep 17 00:00:00 2001 From: zeke0816 <36441798+zeke0816@users.noreply.github.com> Date: Fri, 16 Aug 2024 10:43:03 -0300 Subject: [PATCH] Updated test case to include `activity_timeout` in the environment definition. Using `30` as the default value as this was the original value in the package. --- tests/ReverbTestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ReverbTestCase.php b/tests/ReverbTestCase.php index b30b42ac..a8ee272b 100644 --- a/tests/ReverbTestCase.php +++ b/tests/ReverbTestCase.php @@ -53,6 +53,7 @@ protected function defineEnvironment($app): void 'capacity' => null, 'allowed_origins' => ['*'], 'ping_interval' => 10, + 'activity_timeout' => 30, 'max_message_size' => 1_000_000, ]); @@ -63,6 +64,7 @@ protected function defineEnvironment($app): void 'capacity' => null, 'allowed_origins' => ['laravel.com'], 'ping_interval' => 10, + 'activity_timeout' => 30, 'max_message_size' => 1, ]); }