(scope)
| 2 | |
| 3 | module.exports = { |
| 4 | moduleScope(scope) { |
| 5 | const link = scope.window.document.createElement("link"); |
| 6 | link.rel = "stylesheet"; |
| 7 | link.href = "https://test.cases/path/main.css"; |
| 8 | scope.window.document.head.appendChild(link); |
| 9 | }, |
| 10 | env: "jsdom" |
| 11 | }; |
nothing calls this directly
no test coverage detected