(el)
| 148 | it('should stop search at opt_stopAt', () => { |
| 149 | const cbSpy = env.sandbox.spy(); |
| 150 | const cb = (el) => { |
| 151 | cbSpy(); |
| 152 | return el.tagName == 'DIV'; |
| 153 | }; |
| 154 | const element = document.createElement('div'); |
| 155 | |
| 156 | const child = document.createElement('p'); |
no outgoing calls
no test coverage detected