2020-08-13 11:21:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace BeyondCode\LaravelWebSockets\Tests\Commands;
|
|
|
|
|
|
|
|
|
|
use BeyondCode\LaravelWebSockets\Tests\TestCase;
|
|
|
|
|
|
|
|
|
|
class StartWebSocketServerTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/** @test */
|
|
|
|
|
public function does_not_fail_if_building_up()
|
|
|
|
|
{
|
2020-08-22 18:54:48 +00:00
|
|
|
$this->artisan('websockets:serve', ['--test' => true, '--debug' => true]);
|
2020-08-13 11:21:06 +00:00
|
|
|
|
|
|
|
|
$this->assertTrue(true);
|
|
|
|
|
}
|
|
|
|
|
}
|