laravel-websockets/tests/Commands/StartServerTest.php

16 lines
339 B
PHP
Raw Normal View History

2020-09-10 19:59:26 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\Test\Commands;
use BeyondCode\LaravelWebSockets\Test\TestCase;
class StartServerTest extends TestCase
{
public function test_does_not_fail_if_building_up()
{
$this->artisan('websockets:serve', ['--test' => true, '--debug' => true]);
$this->assertTrue(true);
}
}