mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-24 00:13:36 +00:00
d4c5aebd8f
When an arrow function body contains just a single `return` statement, the braces can be omitted. (Changes are mostly made by `grunt eslint --fix`, with only some line breaks added by hand.) Change-Id: I37f259f87085c8d20ed09cfa58a8456dd36cdc38
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
var utils = require( 'ext.discussionTools.init' ).utils;
|
|
|
|
QUnit.module( 'mw.dt.utils', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( '#linearWalk', ( assert ) => {
|
|
var cases = require( '../cases/linearWalk.json' );
|
|
|
|
cases.forEach( ( caseItem ) => {
|
|
var
|
|
doc = ve.createDocumentFromHtml( require( '../' + caseItem.dom ) ),
|
|
expected = require( caseItem.expected );
|
|
|
|
var actual = [];
|
|
utils.linearWalk( doc, ( event, node ) => {
|
|
actual.push( event + ' ' + node.nodeName.toLowerCase() + '(' + node.nodeType + ')' );
|
|
} );
|
|
|
|
var actualBackwards = [];
|
|
utils.linearWalkBackwards( doc, ( event, node ) => {
|
|
actualBackwards.push( event + ' ' + node.nodeName.toLowerCase() + '(' + node.nodeType + ')' );
|
|
} );
|
|
|
|
assert.deepEqual( actual, expected, caseItem.name );
|
|
|
|
var expectedBackwards = expected.slice().reverse().map( ( a ) => ( a.slice( 0, 5 ) === 'enter' ? 'leave' : 'enter' ) + a.slice( 5 ) );
|
|
assert.deepEqual( actualBackwards, expectedBackwards, caseItem.name + ' (backwards)' );
|
|
|
|
// Uncomment this to get updated content for the JSON files, for copy/paste:
|
|
// console.log( JSON.stringify( actual, null, 2 ) );
|
|
} );
|
|
} );
|