()
| 479 | |
| 480 | it('should not throw error when get XMLHttpRequest.prototype.onreadystatechange the first time', function () { |
| 481 | const func = function () { |
| 482 | testZone.run(function () { |
| 483 | const req = new XMLHttpRequest(); |
| 484 | req.onreadystatechange; |
| 485 | }); |
| 486 | }; |
| 487 | expect(func).not.toThrow(); |
| 488 | }); |
| 489 |
nothing calls this directly
no test coverage detected
searching dependent graphs…