(config)
| 182 | }; |
| 183 | |
| 184 | function guessBrowser(config) { |
| 185 | const firstHelper = Object.keys(config.helpers)[0]; |
| 186 | if (!firstHelper) throw new Error('No helpers declared!'); |
| 187 | if (!config.helpers[firstHelper].browser) { |
| 188 | return []; |
| 189 | } |
| 190 | return [config.helpers[firstHelper].browser]; |
| 191 | } |
| 192 | |
| 193 | export { |
| 194 | createRuns |