mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-24 06:54:00 +00:00
5a2154de38
Change-Id: I8d96b69e8c15bc8ad84cfb0c511396e5b3e7ac20
9 lines
277 B
JavaScript
9 lines
277 B
JavaScript
'use strict';
|
|
|
|
QUnit.module( 've.ui.MWCitationDialogTool (Cite)', ve.test.utils.newMwEnvironment() );
|
|
|
|
QUnit.test( 'isCompatibleWith', ( assert ) => {
|
|
const model = new ve.dm.MWReferenceNode();
|
|
assert.true( ve.ui.MWCitationDialogTool.static.isCompatibleWith( model ) );
|
|
} );
|