(workbook)
| 245 | } |
| 246 | |
| 247 | function buildScreenshotsSheet(workbook) { |
| 248 | let sheet = workbook.addWorksheet('Screenshots'); |
| 249 | |
| 250 | sheet.columns = [{width: 25}, {width: 60}]; |
| 251 | sheet.properties.defaultRowHeight = 50; |
| 252 | |
| 253 | let header = sheet.addRow(['Component', 'Screenshot']); |
| 254 | header.font = {bold: true}; |
| 255 | header.height = 50; |
| 256 | } |
| 257 | |
| 258 | export async function createTestingSheet({v3PRs, s2PRs, racPRs, otherPRs, offPRs}) { |
| 259 | let workbook = new ExcelJS.Workbook(); |
no outgoing calls
no test coverage detected