({ name, command, args, cwd, detail })
| 80 | } |
| 81 | |
| 82 | function skippedStep({ name, command, args, cwd, detail }) { |
| 83 | return { |
| 84 | name, |
| 85 | command: display(command, args), |
| 86 | cwd, |
| 87 | required: true, |
| 88 | skipped: true, |
| 89 | pass: true, |
| 90 | status: 0, |
| 91 | stdout: detail || '', |
| 92 | stderr: '', |
| 93 | json: null, |
| 94 | }; |
| 95 | } |
| 96 | |
| 97 | function failedStep({ name, command, args, cwd, detail }) { |
| 98 | return { |
no test coverage detected