(kid, index)
| 516 | it('should invoke callback with the right context', () => { |
| 517 | let lastContext; |
| 518 | const callback = function (kid, index) { |
| 519 | lastContext = this; |
| 520 | return this; |
| 521 | }; |
| 522 | |
| 523 | // TODO: Use an object to test, after non-object fragments has fully landed. |
| 524 | const scopeTester = 'scope tester'; |
no outgoing calls
no test coverage detected