()
| 40 | </head><body><div id="x">hf-beginframe-probe</div></body></html>`; |
| 41 | |
| 42 | async function main(): Promise<void> { |
| 43 | const start = Date.now(); |
| 44 | const result = await probe(); |
| 45 | result.durationMs = Date.now() - start; |
| 46 | console.log(JSON.stringify(result, null, 2)); |
| 47 | if (!result.passed) { |
| 48 | process.exit(1); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | async function probe(): Promise<ProbeResult> { |
| 53 | let chromiumPath = ""; |
no test coverage detected