You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cell.text return an empty object when cell is empty
Lib version: 3.9.0
Steps To Reproduce
constwb=newExcelJS.Workbook();constws=wb.addWorksheet('XYZ');ws.getCell('A1').value={richText: []};// cell.text equal '', now value is correctexpect(cell.text).to.equal('');awaitwb.xlsx.writeFile('test.xlsx');// persiste to file then create new Workbook and read saved file will reproduce this BUGconstwb2=newExcelJS.Workbook();awaitwb2.xlsx.readFile('test.xlsx')constcell2=wb.getWorksheet('XYZ').getCell('A1').// cell.text now is {}, expect ''expect(cell2.text).to.equal({});