fix: suggest window log stubbing if it's not working when printing render or html elements

pull/3083/head
William Grant 10 months ago
parent da64ee746c
commit b219a8526e

@ -3,14 +3,18 @@ import { enableLogRedirect } from './stubbing';
const printHTMLElement = async (element: HTMLElement, name?: string) => {
if (!window.log || !enableLogRedirect) {
throw Error('window.log is not defined. Have you turned on enableLogRedirect?');
throw Error(
'window.log is not defined. Have you turned on enableLogRedirect / called stubWindowLog() ?'
);
}
return window.log.debug(`\nHTML Element${name ? ` (${name})` : ''}:\n${prettyDOM(element)}\n`);
};
const printRenderResult = async (result: RenderResult, name?: string) => {
if (!window.log || !enableLogRedirect) {
throw Error('window.log is not defined. Have you turned on enableLogRedirect?');
throw Error(
'window.log is not defined. Have you turned on enableLogRedirect / called stubWindowLog() ?'
);
}
return window.log.debug(

Loading…
Cancel
Save