feat: try fix ci/cd
CI / 🧪 Tests Laravel (push) Failing after 1m28s
CI / 🐳 Build & Push Images (push) Has been skipped

This commit is contained in:
2026-08-17 10:25:15 +02:00
parent 5b07d9db4e
commit 3ee3024de9
3 changed files with 16 additions and 0 deletions
@@ -0,0 +1,12 @@
<?php
it('serves local identity documents from a dedicated URL', function () {
$identityDocumentsUrl = (string) config('filesystems.disks.identity_documents.url');
expect(parse_url($identityDocumentsUrl, PHP_URL_PATH))
->toBe('/identity-documents')
->and(route('storage.identity_documents', [
'path' => 'submissions/example.jpg',
], false))
->toBe('/identity-documents/submissions/example.jpg');
});