(name)
| 95 | } |
| 96 | |
| 97 | function triggerMouseEvent(name) { |
| 98 | const event = document.createEvent('MouseEvents'); |
| 99 | event.initEvent(name, true, true); |
| 100 | el[0].dispatchEvent(event); |
| 101 | } |
| 102 | |
| 103 | describe('links with promises', function () { |
| 104 | it('should update the href when promises on parameters change before scope is applied', inject(function ( |
no outgoing calls
no test coverage detected