Skip to content

Commit 57dd4d8

Browse files
committed
fixup! fixup! ✅(e2e) add test for accessible html export from export modal
1 parent 90af0d7 commit 57dd4d8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,17 +253,14 @@ test.describe('Doc Export', () => {
253253

254254
// Read and verify HTML content
255255
const htmlContent = await indexHtml!.async('string');
256-
console.log('HTML content preview:', htmlContent.substring(0, 1000));
257256
expect(htmlContent).toContain('Hello HTML ZIP');
258257

259258
// Check for media files (they are at the root of the ZIP, not in a media/ folder)
260259
// Media files are named like "1-test.svg" or "media-1.png" by deriveMediaFilename
261260
const allFiles = Object.keys(zip.files);
262-
console.log('All files in ZIP:', allFiles);
263261
const mediaFiles = allFiles.filter(
264262
(name) => name !== 'index.html' && !name.endsWith('/'),
265263
);
266-
console.log('Media files found:', mediaFiles);
267264
expect(mediaFiles.length).toBeGreaterThan(0);
268265

269266
// Verify the SVG image is included

0 commit comments

Comments
 (0)