mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 20:03:37 +00:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
375 B
TypeScript
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',
|
|
};
|