diff --git a/modules/ve-mw/tests/ve.test.utils.js b/modules/ve-mw/tests/ve.test.utils.js index ce6859bbaa..6b9c27a997 100644 --- a/modules/ve-mw/tests/ve.test.utils.js +++ b/modules/ve-mw/tests/ve.test.utils.js @@ -75,3 +75,30 @@ ve.test.utils.mwEnvironment = ( function () { teardown: teardownOverrides } ); } )(); + +( function () { + var getDomElementSummaryCore = ve.getDomElementSummary; + + /** + * Override getDomElementSummary to extract HTML from data-mw/body.html + * and make it comparable. + * + * @method + * @inheritdoc ve#getDomElementSummary + */ + ve.getDomElementSummary = function ( element, includeHtml ) { + // "Parent" method + return getDomElementSummaryCore( element, includeHtml, function ( name, value ) { + var obj, html; + if ( name === 'data-mw' ) { + obj = JSON.parse( value ); + html = ve.getProp( obj, 'body', 'html' ); + if ( html ) { + obj.body.html = ve.getDomElementSummary( $( '