Function
recordUnsupported
(tool, action, phase, note)
Source from the content-addressed store, hash-verified
| 882 | } |
| 883 | |
| 884 | function recordUnsupported(tool, action, phase, note) { |
| 885 | rows.push({ |
| 886 | tool, |
| 887 | action, |
| 888 | phase, |
| 889 | iteration: 1, |
| 890 | durationMs: null, |
| 891 | status: "unsupported", |
| 892 | exitCode: null, |
| 893 | stdoutBytes: 0, |
| 894 | stderrBytes: 0, |
| 895 | note, |
| 896 | }); |
| 897 | console.log( |
| 898 | `${tool.padEnd(13)} ${phase.padEnd(4)} ${action.padEnd(28)} ${"n/a".padStart( |
| 899 | 9, |
| 900 | )} unsupported`, |
| 901 | ); |
| 902 | } |
| 903 | |
| 904 | function run(command, args, config = {}) { |
| 905 | const started = performance.now(); |
Tested by
no test coverage detected