(selectedRuns, config)
| 6 | * to be executed and retrieves the run-specific configuration |
| 7 | */ |
| 8 | const createRuns = (selectedRuns, config) => { |
| 9 | return createCollection(config) |
| 10 | .prepareRuns(selectedRuns, config) |
| 11 | .prepareChunks(config) |
| 12 | .prepareBrowsers(config) |
| 13 | .filterSelectedBrowsers(selectedRuns, config) |
| 14 | .getRuns(); |
| 15 | }; |
| 16 | |
| 17 | class Collection { |
| 18 | constructor(config) { |
no test coverage detected