mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-14 18:45:12 +00:00
bc7f1a7005
Same as in I7e82e03. The extra "shield" element was added in 2013 (!), see Ib244ff6. Back then we couldn't use the CSS property. But nowadays we can. Bug: T360034 Bug: T367030 Change-Id: Ib41e062491e65eabc8a52facefe283ba04ce16ff
10 lines
366 B
JavaScript
10 lines
366 B
JavaScript
'use strict';
|
|
|
|
QUnit.module( 've.ui.MWReferenceResultWidget (Cite)', ve.test.utils.newMwEnvironment() );
|
|
|
|
QUnit.test( 'Initialization', ( assert ) => {
|
|
const widget = new ve.ui.MWReferenceResultWidget();
|
|
assert.true( widget instanceof OO.ui.OptionWidget );
|
|
assert.strictEqual( widget.$element.children( '.ve-ui-mwReferenceResultWidget-shield' ).length, 0 );
|
|
} );
|