13 lines
402 B
TypeScript
13 lines
402 B
TypeScript
|
import {runPrivateKeyTests} from "./privateKey.test";
|
||
|
import {runPublicKeyTests} from "./publicKey.test";
|
||
|
// import {runKeypairTests} from "./keypair.test";
|
||
|
import {runIndexTests} from "./index.test";
|
||
|
import {forEachImplementation} from "../switch";
|
||
|
|
||
|
forEachImplementation(["herumi"], (bls) => {
|
||
|
runPrivateKeyTests(bls);
|
||
|
runPublicKeyTests(bls);
|
||
|
// runKeypairTests(bls);
|
||
|
runIndexTests(bls);
|
||
|
});
|