(contextPrefix: string, notebook: string, id: number)
| 27 | let numCellImages = 0; |
| 28 | |
| 29 | const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { |
| 30 | return `${contextPrefix}-${notebook}-cell-${id}.png`; |
| 31 | }; |
| 32 | |
| 33 | await page.notebook.runCellByCell({ |
| 34 | onAfterCellRun: async (cellIndex: number) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…