From a36d3366f16b287c05b3278f1cd9dfaa203c635f Mon Sep 17 00:00:00 2001 From: Alex Renoki Date: Tue, 18 Aug 2020 23:22:10 +0300 Subject: [PATCH] Enforce DNS lookup on testing --- tests/TestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 85f3902..664bf28 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -94,6 +94,8 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase ], ]); + $app['config']->set('websockets.statistics.perform_dns_lookup', true); + $app['config']->set('database.redis.default', [ 'host' => env('REDIS_HOST', '127.0.0.1'), 'password' => env('REDIS_PASSWORD', null),