Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 00b3edf

Browse files
committed
Added Illuminate\Broadcasting\BroadcastServiceProvider
1 parent b1d29d0 commit 00b3edf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/TestCase.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use BeyondCode\LaravelWebSockets\Tests\Statistics\Logger\FakeStatisticsLogger;
99
use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
1010
use BeyondCode\LaravelWebSockets\WebSockets\WebSocketHandler;
11-
use BeyondCode\LaravelWebSockets\WebSocketsServiceProvider;
1211
use Clue\React\Buzz\Browser;
1312
use GuzzleHttp\Psr7\Request;
1413
use Mockery;
@@ -40,7 +39,10 @@ public function setUp(): void
4039

4140
protected function getPackageProviders($app)
4241
{
43-
return [WebSocketsServiceProvider::class];
42+
return [
43+
\Illuminate\Broadcasting\BroadcastServiceProvider::class,
44+
\BeyondCode\LaravelWebSockets\WebSocketsServiceProvider::class,
45+
];
4446
}
4547

4648
protected function getEnvironmentSetUp($app)

0 commit comments

Comments
 (0)