mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-28 08:50:07 +00:00
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 ) );
|
||
|
} );
|