(value: string, scenario: Scenario)
| 76 | } |
| 77 | |
| 78 | function matchesName(value: string, scenario: Scenario) { |
| 79 | return scenario.name.includes(value) || scenario.path.includes(value) || scenario.method.includes(value.toUpperCase()) |
| 80 | } |
| 81 | |
| 82 | function option(args: string[], name: string) { |
| 83 | const index = args.indexOf(name) |