Files
notesnook/packages/core/jest.setup.js
2022-07-15 09:44:47 +05:00

12 lines
322 B
JavaScript

var nodeCrypto = require("crypto");
var dotenv = require("dotenv");
const fetch = require("node-fetch");
const linkedom = require("linkedom");
globalThis.DOMParser = linkedom.DOMParser;
globalThis.fetch = fetch;
require("abortcontroller-polyfill/dist/polyfill-patch-fetch");
dotenv.config();
global.crypto = nodeCrypto;