You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Discussed previously in #971. The current tentative plan is:
window.console.log("foo");// does nothingvarvirtualConsole=jsdom.getVirtualConsole(window);// virtualConsole is a Node.js EventEmitter (not a jsdom EventTarget)window.console.log("foo","bar");// raises an event "log" with arguments "foo", "bar" on virtualConsolevirtualConsole.sendTo(console);// when window.console.log is called, calls console.log.
The text was updated successfully, but these errors were encountered:
Discussed previously in #971. The current tentative plan is:
The text was updated successfully, but these errors were encountered: