(eventName)
| 1 | /* globals CONFIG, GC, logger */ |
| 2 | |
| 3 | var dispatchWindowEvent = function(eventName) { |
| 4 | var e = document.createEvent('Event'); |
| 5 | e.initEvent(eventName, true, true); |
| 6 | window.dispatchEvent(e); |
| 7 | }; |
| 8 | |
| 9 | exports.onLaunch = function () { |
| 10 | var deviceId = CONFIG.simulator.deviceId; |
no outgoing calls
no test coverage detected
searching dependent graphs…