Widen marketing demo frame

This commit is contained in:
Codex Agent
2026-01-21 10:58:48 +01:00
parent 6481e980c8
commit 47fcd72cce
2 changed files with 12 additions and 1 deletions

View File

@@ -29,4 +29,15 @@ class DemoPageTest extends TestCase
->where('demoToken', $joinToken->token)
);
}
public function test_demo_page_renders_without_marketing_demo_event(): void
{
$response = $this->get('/de/demo');
$response->assertOk();
$response->assertInertia(fn (Assert $page) => $page
->component('marketing/Demo')
->where('demoToken', null)
);
}
}