1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00
Files
Boostnote/tests/jest.js
2018-03-25 21:02:35 +03:00

13 lines
246 B
JavaScript

// Here you can mock the libraries connected through direct insertion <script src="" >
global.Raphael = {
setWindow: jest.fn(),
registerFont: jest.fn(),
fn: function () {
return {}
}
}
global._ = {
extend: jest.genMockFunction()
}