(snapshot)
| 246 | // ───────────────────────────────────────────────────────────────── |
| 247 | |
| 248 | function compactAriaSnapshot(snapshot) { |
| 249 | if (!snapshot) return '' |
| 250 | const tree = dropEmpty(parseSnapshot(snapshot)) |
| 251 | return renderTree(tree) |
| 252 | } |
| 253 | |
| 254 | function diffAriaSnapshots(previous, current) { |
| 255 | const summariesOf = snap => collectSummaries(dropEmpty(parseSnapshot(snap))) |
nothing calls this directly
no test coverage detected