({v3PRs, s2PRs, racPRs, otherPRs, offPRs})
| 256 | } |
| 257 | |
| 258 | export async function createTestingSheet({v3PRs, s2PRs, racPRs, otherPRs, offPRs}) { |
| 259 | let workbook = new ExcelJS.Workbook(); |
| 260 | |
| 261 | buildPassFailSheet(workbook, {v3PRs, s2PRs, racPRs, otherPRs, offPRs}); |
| 262 | buildScreenshotsSheet(workbook); |
| 263 | buildBugsNotesSheet(workbook); |
| 264 | buildReleaseNotesSheet(workbook, {v3PRs, s2PRs, racPRs, otherPRs, offPRs}); |
| 265 | |
| 266 | return workbook.xlsx.writeBuffer(); |
| 267 | } |
no test coverage detected