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.
2022-04-11 15:08:15 +00:00
|
|
|
import herumi from "../../src/herumi/index.js";
|
2022-04-14 17:16:06 +00:00
|
|
|
import {runSecretKeyTests} from "../unit/secretKey.test.js";
|
|
|
|
import {runPublicKeyTests} from "../unit/publicKey.test.js";
|
|
|
|
import {runIndexTests} from "../unit/index.test.js";
|
2020-11-20 19:03:17 +00:00
|
|
|
|
2020-11-20 19:08:53 +00:00
|
|
|
// This file is intended to be compiled and run by Karma
|
|
|
|
// Do not import the node.bindings or it will break with:
|
|
|
|
// Error: BLST bindings loader should only run in a NodeJS context: process.platform
|
|
|
|
describe("herumi", () => {
|
2020-11-30 18:01:13 +00:00
|
|
|
runSecretKeyTests(herumi);
|
2020-11-20 19:08:53 +00:00
|
|
|
runPublicKeyTests(herumi);
|
|
|
|
runIndexTests(herumi);
|
2020-11-20 19:03:17 +00:00
|
|
|
});
|