| 21 | |
| 22 | const allowed = fn => () => expect(fn).to.not.throw(); |
| 23 | const blocked = fn => () => expect(fn).to.throw(TypeError); |
| 24 | const normally = fn => fn(); |
| 25 | const whileIterating = (self, fn) => { |
| 26 | let count = 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…