laravel-websockets/tests/Channels/PrivateChannelReplicationTe...

26 lines
466 B
PHP

<?php
namespace BeyondCode\LaravelWebSockets\Tests\Channels;
use BeyondCode\LaravelWebSockets\Tests\TestCase;
class PrivateChannelReplicationTest extends TestCase
{
/**
* {@inheritdoc}
*/
public function setUp(): void
{
parent::setUp();
$this->runOnlyOnRedisReplication();
}
public function test_not_implemented()
{
$this->markTestIncomplete(
'Not yet implemented tests.'
);
}
}