Skip to content

Commit

Permalink
Fix defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
bloodyowl committed Jul 24, 2022
1 parent 77b4158 commit 693ad27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/retest.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ let { autoBoot, runTests } = await import(
autoBoot.contents = false;

if (args.includes(options["--with-dom"])) {
var jsdom = new JSDOM("<!DOCTYPE html>");
var jsdom = new JSDOM("<!DOCTYPE html>", {
url: "about://blank",
});
Object.defineProperties(
globalThis,
Object.fromEntries(
Expand Down

0 comments on commit 693ad27

Please sign in to comment.