| 50 | } |
| 51 | |
| 52 | const mapFileFormats = files => { |
| 53 | return { |
| 54 | gherkin: files.filter(file => file.match(/\.feature$/)), |
| 55 | js: files.filter(file => file.match(/\.t|js$/)), |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Creates a list of chunks incl. configuration by either dividing a list of scenario |