mediawiki-extensions-Cite/modules/ve-cite/tests/ve.ui.MWReferenceContextItem.test.js
thiemowmde d6a58cfa8d Add initial QUnit tests relevant for reference re-use in VE
Note these are more meant as regression test to better cover what's
done in other patches. Everybody should feel free to delete a test
when it gets in the way. I marked a few especially fragile places
with respective comments.

Bug: T358652
Change-Id: I7844907fe3ef4f3439717381b4ecdac9e2d0a825
2024-03-21 09:37:26 +01:00

19 lines
587 B
JavaScript

'use strict';
QUnit.module( 've.ui.MWReferenceContextItem (Cite)', ve.test.utils.newMwEnvironment() );
QUnit.test( 'getReferenceNode', function ( assert ) {
// XXX: This is a regression test with a fragile setup. Please feel free to delete this test
// when you feel like it doesn't make sense to update it.
const context = {
isMobile: () => false,
getSurface: () => ( {
isReadOnly: () => false
} )
};
const model = { isEditable: () => false };
const item = new ve.ui.MWReferenceContextItem( context, model );
assert.strictEqual( item.getReferenceNode(), null );
} );