| 7 | |
| 8 | |
| 9 | const filterUpdateNotebooks = item => { |
| 10 | const basename = path.basename(item.path); |
| 11 | return basename.includes('_update'); |
| 12 | } |
| 13 | |
| 14 | const testCellOutputs = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { |
| 15 | const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => !filterUpdateNotebooks(item), nodir: true}); |
no outgoing calls
no test coverage detected
searching dependent graphs…