(html)
| 37 | |
| 38 | |
| 39 | function renderDom(html) { |
| 40 | const { |
| 41 | JSDOM |
| 42 | } = jsdom; |
| 43 | const dom = new JSDOM(html); |
| 44 | const $ = (require('jquery'))(dom.window); |
| 45 | return $; |
| 46 | } |
| 47 | |
| 48 | |
| 49 | function newRequestPromise(url) { |
no outgoing calls
no test coverage detected