Update guest PWA v2 UI and likes
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-02-05 15:09:19 +01:00
parent 6eafec2128
commit fa630e335d
22 changed files with 1288 additions and 200 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
class ContentSecurityPolicyTest extends TestCase
{
public function test_guest_routes_include_worker_src_for_blob(): void
{
config(['app.debug' => false]);
$response = $this->get('/e/test/upload');
$csp = $response->headers->get('Content-Security-Policy');
$this->assertNotNull($csp);
$this->assertStringContainsString("worker-src 'self' blob:", $csp);
}
}