Files
automaker/apps/server/tests/fixtures/images.ts
SuperComboGamer 8d578558ff style: fix formatting with Prettier
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-21 20:31:57 -05:00

15 lines
375 B
TypeScript

/**
* Image fixtures for testing image handling
*/
// 1x1 transparent PNG base64 data
export const pngBase64Fixture =
'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==';
export const imageDataFixture = {
base64: pngBase64Fixture,
mimeType: 'image/png',
filename: 'test.png',
originalPath: '/path/to/test.png',
};