| 160 | } |
| 161 | |
| 162 | const indexOfSmallestElement = groups => { |
| 163 | let i = 0 |
| 164 | for (let j = 1; j < groups.length; j++) { |
| 165 | if (groups[j - 1].length > groups[j].length) { |
| 166 | i = j |
| 167 | } |
| 168 | } |
| 169 | return i |
| 170 | } |
| 171 | |
| 172 | const convertToMochaTests = testGroup => { |
| 173 | const group = [] |
no outgoing calls
no test coverage detected