chore: commit current workspace changes

This commit is contained in:
2026-05-02 09:37:14 +02:00
parent 79235133f0
commit caf1464aa5
121 changed files with 485218 additions and 181663 deletions

View File

@@ -115,4 +115,15 @@ it('prioritizes higher-signal world rewards ahead of participation on profile re
->where('worldRewards.items.0.badge_label', 'Pixel Week 2026 Winner')
->where('worldRewards.items.1.badge_label', 'Retro Month 2026 Participant')
->where('worldRewards.recent.0.badge_label', 'Retro Month 2026 Participant'));
});
it('redirects public profile paths from stray skinbase subdomains to the canonical host', function (): void {
config()->set('app.url', 'https://skinbase.org');
User::factory()->create([
'username' => 'ta2027',
]);
$this->get('https://ffh84a.skinbase.org/@ta2027')
->assertRedirect('https://skinbase.org/@ta2027');
});