upgrade to tamagui v2 and guest pwa overhaul

This commit is contained in:
Codex Agent
2026-02-02 13:01:20 +01:00
parent 2e78f3ab8d
commit 7c6e14ffe2
168 changed files with 47462 additions and 8914 deletions

View File

@@ -0,0 +1,36 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
class GuestV2PwaTest extends TestCase
{
public function test_event_v2_route_returns_guest_view(): void
{
$this->get('/event-v2')
->assertOk()
->assertViewIs('guest-v2');
}
public function test_event_v2_route_allows_nested_paths(): void
{
$this->get('/event-v2/demo/path')
->assertOk()
->assertViewIs('guest-v2');
}
public function test_event_v2_mockups_route_returns_guest_view(): void
{
$this->get('/event-v2/mockups/1')
->assertOk()
->assertViewIs('guest-v2');
}
public function test_event_v2_home_mockups_route_returns_guest_view(): void
{
$this->get('/event-v2/mockups/home/1')
->assertOk()
->assertViewIs('guest-v2');
}
}