mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-12-02 18:46:18 +00:00
b02028b671
It's just hard to find and confusing when hidden in that sub-directory. Bug: T358851 Change-Id: I19ffe73b79fa9add52af12f477afe7abbc6db836
9 lines
283 B
JavaScript
9 lines
283 B
JavaScript
'use strict';
|
|
|
|
QUnit.module( 've.ui.MWCitationDialogTool (Cite)', ve.test.utils.newMwEnvironment() );
|
|
|
|
QUnit.test( 'isCompatibleWith', function ( assert ) {
|
|
const model = new ve.dm.MWReferenceNode();
|
|
assert.true( ve.ui.MWCitationDialogTool.static.isCompatibleWith( model ) );
|
|
} );
|