mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 13:10:14 +01:00
7 lines
92 B
JavaScript
7 lines
92 B
JavaScript
|
const jQueryObj = {
|
||
|
on: jest.fn(),
|
||
|
off: jest.fn(),
|
||
|
};
|
||
|
|
||
|
global.jQuery = () => jQueryObj;
|