This commit is contained in:
2026-05-13 17:11:09 +02:00
commit ea63897455
2785 changed files with 359868 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
use function Pest\Laravel\get;
it('renders localized frontend links on locale prefixed pages', function () {
get('/sl')
->assertSuccessful()
->assertSee('/sl/contact', false)
->assertSee('/sl', false);
});
it('renders the localized terms page without falling through slug routing', function () {
get('/sl/terms')
->assertSuccessful()
->assertSee('Terms', false);
});