* Returns "count" relative test paths, randomly selected from soft-skipped * and permitted files. Permitted files have a 4 times higher chance to * be chosen.
(count)
| 153 | * be chosen. |
| 154 | */ |
| 155 | getRandomTestcasePaths(count) { |
| 156 | return random.twoBucketSample( |
| 157 | this.softSkippedFiles, this.permittedFiles, 4, count); |
| 158 | } |
| 159 | |
| 160 | loadTestcase(relPath, strict, label) { |
| 161 | const start = Date.now(); |
no outgoing calls
no test coverage detected