RSS Git Download  Clone
Raw View History
Blames found: 5 Mode: javascript Binary: false


Hang on, we reloading big blames...
const Module = require('module'); const originalRequire = Module.prototype.require;
Module.prototype.require = function(name){
switch(name) { case 'electron': const mock = { on: () => {}, }; return { ipcMain: mock, app: Object.assign({ makeSingleInstance: () => {} }, mock) }; break;
} //do your thing here return originalRequire.apply(this, arguments); };
const { JSDOM } = require("jsdom"); const dom = new JSDOM(`<!DOCTYPE html><p>Hello world</p>`); global.document = dom.window.document; global.window = dom.window