(prefix = 'pause')
| 441 | } |
| 442 | |
| 443 | async function captureLiveArtifacts(prefix = 'pause') { |
| 444 | const helper = pickActingHelper(container.helpers()) |
| 445 | if (!helper) return {} |
| 446 | const dir = snapshotDirFor(outputBaseDir()) |
| 447 | mkdirp.sync(dir) |
| 448 | const captured = await captureSnapshot(helper, { dir, prefix }) |
| 449 | return artifactsToFileUrls(captured, dir) |
| 450 | } |
| 451 | |
| 452 | async function gatherPageBrief() { |
| 453 | const helper = pickActingHelper(container.helpers()) |
nothing calls this directly
no test coverage detected