happy-dom
happy-dom copied to clipboard
not load url assets when change the location.href
const { GlobalRegistrator } = require("../packages/global-registrator");
GlobalRegistrator.register();
window.location.href = "https://www.google.com";
document.write(`<html><script>window.location.href = "https://www.google.com"; </script></html>`);
console.log(document.getElementsByTagName("html")[0].getInnerHTML());
// <script>window.location.href = "https://www.google.com"; </script>
it's async to load web resources when change the location.href...