Added comprehensive E2E tests: 1. API E2E Tests (api.e2e.test.ts): - Healthcheck API testing - Static resources verification - Module loading tests - Converter properties validation - File type normalization tests - i18n module tests - Transfer module tests - Database structure tests 2. Converter E2E Tests (converters.e2e.test.ts): - Real Inkscape conversions (SVG → PNG/PDF/EPS) - Real Pandoc conversions (Markdown → HTML/DOCX/RST) - Dasel format conversions (JSON → YAML/TOML) - Batch conversion tests - Error handling tests - Auto-detection of available tools 3. Test Infrastructure: - helpers.ts: Tool detection, test file generation - fixtures/: Sample test files (SVG, MD, JSON) - .gitignore: Exclude output directory Total: 34 new E2E tests
18 lines
711 B
XML
18 lines
711 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
|
|
<!-- Background -->
|
|
<rect width="200" height="200" fill="#f0f0f0"/>
|
|
|
|
<!-- Main shape -->
|
|
<rect x="20" y="20" width="160" height="160" fill="#4285f4" rx="20"/>
|
|
|
|
<!-- Inner circle -->
|
|
<circle cx="100" cy="100" r="50" fill="#ffffff"/>
|
|
|
|
<!-- Cross lines -->
|
|
<line x1="100" y1="60" x2="100" y2="140" stroke="#4285f4" stroke-width="8"/>
|
|
<line x1="60" y1="100" x2="140" y2="100" stroke="#4285f4" stroke-width="8"/>
|
|
|
|
<!-- Text label -->
|
|
<text x="100" y="180" text-anchor="middle" font-family="Arial, sans-serif" font-size="14" fill="#333">E2E Test</text>
|
|
</svg>
|