(src, target)
| 11 | const { window } = jsdom; |
| 12 | |
| 13 | function copyProps(src, target) { |
| 14 | Object.defineProperties(target, { |
| 15 | ...Object.getOwnPropertyDescriptors(src), |
| 16 | ...Object.getOwnPropertyDescriptors(target), |
| 17 | }); |
| 18 | } |
| 19 | |
| 20 | global.window = window; |
| 21 | global.document = window.document; |