File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/frontend/apps/e2e/__tests__/app-impress Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments