global.mw = require( '@wikimedia/mw-node-qunit/src/mockMediaWiki.js' )(); mw.user = Object.assign( mw.user, { options: { // Only called for 'usecodemirror' option. get: jest.fn().mockReturnValue( 1 ), set: jest.fn() }, sessionId: jest.fn().mockReturnValue( 'abc' ), getId: jest.fn().mockReturnValue( 123 ), isNamed: jest.fn().mockReturnValue( true ) } ); mw.config.get = jest.fn().mockReturnValue( '1000+ edits' ); mw.track = jest.fn(); mw.Api.prototype.saveOption = jest.fn(); // eslint-disable-next-line no-underscore-dangle, camelcase global.__non_webpack_require__ = jest.fn(); global.$ = require( 'jquery' ); $.fn.textSelection = () => {};