We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834cfd0 commit c34072aCopy full SHA for c34072a
src/integrations/misc/__tests__/extract-text-from-xlsx.test.ts
@@ -153,13 +153,13 @@ describe("extractTextFromXLSX", () => {
153
const worksheet = workbook.addWorksheet("Sheet1")
154
155
worksheet.getCell("A1").value = {
156
- text: "Google",
157
- hyperlink: "https://www.google.com",
+ text: "Roo Code",
+ hyperlink: "https://roocode.com/",
158
}
159
160
const result = await extractTextFromXLSX(workbook)
161
162
- expect(result).toContain("Google (https://www.google.com)")
+ expect(result).toContain("Roo Code (https://roocode.com/)")
163
})
164
165
it("should handle formulas with and without results", async () => {
0 commit comments