()
| 13 | |
| 14 | for (const [value] of valuesList) { |
| 15 | function createPortProgram() { |
| 16 | const program = new commander.Command(); |
| 17 | program.option('-p,--port <number>', 'specify port'); |
| 18 | return program; |
| 19 | } |
| 20 | |
| 21 | test(`when option with required value specified as ${value} and short flag followed by value then value is as specified`, () => { |
| 22 | const program = createPortProgram(); |
no test coverage detected