(rootPath: string, firstIncludeSegment: string)
| 40 | }); |
| 41 | |
| 42 | const gatherFileList = (rootPath: string, firstIncludeSegment: string) => |
| 43 | new FileGlobList({ |
| 44 | rootPath, |
| 45 | patterns: [`${firstIncludeSegment}/**/*.js`, '!**/node_modules/**'], |
| 46 | }); |
| 47 | |
| 48 | const gatherSm = async (list: FileGlobList) => { |
| 49 | type TReturn = { |
no outgoing calls
no test coverage detected