File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed
src/integrations/misc/__tests__ Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -176,25 +176,6 @@ describe("extractTextFromXLSX", () => {
176176 } )
177177 } )
178178
179- describe ( "row limit handling" , ( ) => {
180- it ( "should respect the ROW_LIMIT constant" , async ( ) => {
181- const workbook = new ExcelJS . Workbook ( )
182- const worksheet = workbook . addWorksheet ( "Sheet1" )
183-
184- // Add a reasonable number of rows for testing
185- for ( let i = 1 ; i <= 100 ; i ++ ) {
186- worksheet . getCell ( `A${ i } ` ) . value = `Row ${ i } `
187- }
188-
189- const result = await extractTextFromXLSX ( workbook )
190-
191- expect ( result ) . toContain ( "Row 1" )
192- expect ( result ) . toContain ( "Row 100" )
193- // Should not contain truncation message for 100 rows (under limit)
194- expect ( result ) . not . toContain ( "[... truncated at row" )
195- } )
196- } )
197-
198179 describe ( "edge cases" , ( ) => {
199180 it ( "should handle empty workbook" , async ( ) => {
200181 const workbook = new ExcelJS . Workbook ( )
You can’t perform that action at this time.
0 commit comments