mediawiki-extensions-Relate.../jest.setup.js
Ed Sanders 1071a53446 build: Update linters
Change-Id: I98cbfd20fd85cdf8bb8dc1276ebbc516992212c3
2023-09-15 17:06:48 +00:00

24 lines
514 B
JavaScript

'use strict';
const wikimediaTestingUtils = require( '@wikimedia/mw-node-qunit' );
const fn = () => {};
global.CSS = {
escape: ( str ) => str
};
global.OO = {
inheritClass: ( ClassNameObject ) => {
ClassNameObject.super = fn;
ClassNameObject.prototype.on = fn;
},
initClass: fn,
EventEmitter: fn
};
const { TextEncoder, TextDecoder } = require( 'util' );
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;
wikimediaTestingUtils.setUp( /* disable QUnit sandboxing feature */ false );