(snapshot)
| 1753 | } |
| 1754 | |
| 1755 | function summarizeUi(snapshot) { |
| 1756 | const lines = snapshot |
| 1757 | .split("\n") |
| 1758 | .filter( |
| 1759 | (line) => line.startsWith("source:") || line.trim().startsWith("- "), |
| 1760 | ) |
| 1761 | .slice(0, 6); |
| 1762 | return lines.join(" | ").slice(0, 500); |
| 1763 | } |
| 1764 | |
| 1765 | function simdeckText(args, options = {}) { |
| 1766 | return runText(simdeck, ["--server-url", serverUrl, ...args], { |
no outgoing calls
no test coverage detected