(t)
| 24 | |
| 25 | // rect gets the bounding box for box with text t. |
| 26 | function rect(t) { |
| 27 | const elem = boxMap.get(t); |
| 28 | if (!elem) { |
| 29 | test.err("did not find", t); |
| 30 | return null; |
| 31 | } |
| 32 | return elem.getBoundingClientRect(); |
| 33 | } |
| 34 | |
| 35 | // checkCalls checks that box with text a is positioned w.r.t. box with |
| 36 | // text b to indicate a call from a to b. Expect a gap of the specified |
no test coverage detected
searching dependent graphs…