* @param {string} strategy strategy * @returns {string[]} folders
(strategy)
| 43 | * @returns {string[]} folders |
| 44 | */ |
| 45 | function collectTestFolders(strategy) { |
| 46 | const testFolder = path.resolve(path.join(process.cwd(), BASE_DIR)); |
| 47 | |
| 48 | return extractFolder(testFolder, [], strategy); |
| 49 | } |
| 50 | |
| 51 | module.exports = collectTestFolders; |
no test coverage detected