Skip to content

Commit 834cfd0

Browse files
committed
This test seems fairly useless
1 parent 0824a92 commit 834cfd0

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/integrations/misc/__tests__/extract-text-from-xlsx.test.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)