Add live show player playback and effects
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-05 18:31:01 +01:00
parent 11dc0d77b4
commit 53eb560aa5
17 changed files with 1612 additions and 2 deletions

View 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');
}
}