feature: Enhance output options with Google Sheets integration and improve Excel writer functionality

This commit is contained in:
Keith Solomon
2026-05-17 12:05:42 -05:00
parent 379526114c
commit a7cdcf95ae
10 changed files with 375 additions and 14 deletions
+4
View File
@@ -35,5 +35,9 @@ describe('ExcelWriter', () => {
const workbook = XLSX.readFile(path);
expect(workbook.SheetNames[0]).toBe('A Very Long Newsletter Name Tha');
expect(workbook.SheetNames[0].length).toBe(31);
const rows = XLSX.utils.sheet_to_json<Record<string, unknown>>(
workbook.Sheets[workbook.SheetNames[0]]
);
expect(rows[0]).not.toHaveProperty('Source Newsletter');
});
});