(result)
| 341 | const watch = takeAllFlagValues(rest, "--watch"); |
| 342 | job.watchPaths.push(...watch[0].map(stripOuterQuotes).filter(Boolean)); |
| 343 | rest = watch[1]; |
| 344 | const includes = takeAllFlagValues(rest, "--include-file"); |
| 345 | job.includeFiles.push(...includes[0].map(stripOuterQuotes).filter(Boolean)); |
| 346 | rest = includes[1]; |
| 347 | const acceptances = takeAllFlagValues(rest, "--acceptance"); |
| 348 | job.goalAcceptance.push(...acceptances[0].map(stripOuterQuotes).filter(Boolean)); |
| 349 | rest = acceptances[1]; |
no outgoing calls
no test coverage detected