Add live show player playback and effects
This commit is contained in:
16
tests/Feature/GuestLiveShowRouteTest.php
Normal file
16
tests/Feature/GuestLiveShowRouteTest.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class GuestLiveShowRouteTest extends TestCase
|
||||
{
|
||||
public function test_live_show_route_serves_guest_shell(): void
|
||||
{
|
||||
$response = $this->get('/show/demo-live-show');
|
||||
|
||||
$response->assertStatus(200);
|
||||
$response->assertViewIs('guest');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user