Files
notesnook/packages/core/jest.setup.js

10 lines
240 B
JavaScript
Raw Normal View History

var nodeCrypto = require("crypto");
var dotenv = require("dotenv");
const fetch = require("node-fetch");
globalThis.fetch = fetch;
require("abortcontroller-polyfill/dist/polyfill-patch-fetch")
dotenv.config();
2021-07-12 10:32:35 +05:00
global.crypto = nodeCrypto;