2.4.48
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 19s
Build & Deploy / 🏗️ Build (push) Has been cancelled
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🧪 QA (push) Has been cancelled

This commit is contained in:
2026-08-12 14:17:17 +02:00
parent 19c8cec1d3
commit b945ba31fb
11 changed files with 12 additions and 5 deletions

View File

@@ -58,4 +58,11 @@ describe('Team Images and Team Page Content', () => {
expect(deContent).toContain('/assets/photos/team/katrin-heigold.jpg');
expect(enContent).toContain('/assets/photos/team/katrin-heigold.jpg');
});
it('should verify TeamGrid component uses larger profile picture dimensions', () => {
const teamGridPath = path.join(process.cwd(), 'components', 'blocks', 'TeamGrid.tsx');
const teamGridContent = fs.readFileSync(teamGridPath, 'utf8');
expect(teamGridContent).toContain('w-32 h-32');
});
});