Add register script

This commit is contained in:
dapplion 2021-08-23 19:27:09 +02:00
parent 5d323c0d62
commit 61ce6b1ead
2 changed files with 16 additions and 4 deletions

View File

@ -13,10 +13,8 @@
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.d.ts",
"blst-native.*",
"browser.*",
"herumi.*",
"node."
"*.d.ts",
"*.js"
],
"keywords": [
"ethereum",

14
register.js Normal file
View File

@ -0,0 +1,14 @@
const {init} = require("./lib");
// -----------------------------------------
// To be used in NodeJS testing environments
// node -r @chainsafe/bls/register
// -----------------------------------------
// blst-native initialization is syncronous
// Initialize bls here instead of in before() so it's available inside describe() blocks
init("blst-native").catch((e) => {
// eslint-disable-next-line no-console
console.error(e);
process.exit(1);
});