(list: FileGlobList)
| 68 | }; |
| 69 | |
| 70 | const gatherAll = (list: FileGlobList) => { |
| 71 | return r.streamAllChildren(list, m => m).then(r => r.sort()); |
| 72 | }; |
| 73 | |
| 74 | it('no-ops for non-existent directories', async () => { |
| 75 | expect(await gatherSm(gatherFileList(__dirname, 'does-not-exist'))).to.be.empty; |
no test coverage detected