Files
ladill-meet/tests/Unit/SpaceServiceTest.php
T
isaaccladandCursor c51e59945e
Deploy Ladill Meet / deploy (push) Successful in 1m3s
Limit audio rooms to Twitter Spaces features and fix live toolbar UX.
Block breakouts, chat, Q&A, and other meeting-only tools in spaces, hide video controls for audio-only rooms, and stabilize mobile nav and toolbar layout.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-04 00:25:40 +00:00

23 lines
703 B
PHP

<?php
namespace Tests\Unit;
use App\Models\Room;
use App\Services\Meet\SpaceService;
use Tests\TestCase;
class SpaceServiceTest extends TestCase
{
public function test_space_rooms_disallow_meeting_only_features(): void
{
$service = app(SpaceService::class);
$space = new Room(['type' => 'space']);
$meeting = new Room(['type' => 'meeting']);
foreach (['breakouts', 'chat', 'qa', 'polls', 'files', 'whiteboard', 'programme', 'live_stream', 'lock'] as $feature) {
$this->assertFalse($service->allowsRoomFeature($space, $feature), $feature);
$this->assertTrue($service->allowsRoomFeature($meeting, $feature), $feature);
}
}
}