2024-03-13 04:24:53 +00:00
|
|
|
jest.mock( '../../ext.CodeMirror.data.js', () => jest.fn(), { virtual: true } );
|
2023-09-19 17:59:29 +00:00
|
|
|
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();
|
|
|
|
global.$ = require( 'jquery' );
|
|
|
|
$.fn.textSelection = () => {};
|