This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
chainsafe-bls/register.js

13 lines
466 B
JavaScript

// -----------------------------------------
// 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
import("./lib/index.js").then(({init}) => init("blst-native")).catch((e) => {
// eslint-disable-next-line no-console
console.error(e);
process.exit(1);
});