Files
fotospiel-app/tests/Feature/GuestLiveShowRouteTest.php
Codex Agent 53eb560aa5
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Add live show player playback and effects
2026-01-05 18:31:01 +01:00

17 lines
321 B
PHP

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