diff --git a/test/happydom.js b/test/happydom.js index 7f712d0..078d6f2 100644 --- a/test/happydom.js +++ b/test/happydom.js @@ -1,3 +1,6 @@ import { GlobalRegistrator } from "@happy-dom/global-registrator"; +// FIX for https://github.com/oven-sh/bun/issues/6044 +const oldconsole = console; GlobalRegistrator.register(); +window.console = oldconsole;