MCPcopy Index your code
hub / github.com/adobe/react-spectrum / buildScreenshotsSheet

Function buildScreenshotsSheet

scripts/createExcelSheet.mjs:247–256  ·  view source on GitHub ↗
(workbook)

Source from the content-addressed store, hash-verified

245}
246
247function 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
258export async function createTestingSheet({v3PRs, s2PRs, racPRs, otherPRs, offPRs}) {
259 let workbook = new ExcelJS.Workbook();

Callers 1

createTestingSheetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected