12 lines
393 B
TypeScript
12 lines
393 B
TypeScript
import {runSecretKeyTests} from "./secretKey.test";
|
|
import {runPublicKeyTests} from "./publicKey.test";
|
|
import {runIndexTests} from "./index.test";
|
|
import {describeForAllImplementations} from "../switch";
|
|
|
|
// Import test's bls lib lazily to prevent breaking test with Karma
|
|
describeForAllImplementations((bls) => {
|
|
runSecretKeyTests(bls);
|
|
runPublicKeyTests(bls);
|
|
runIndexTests(bls);
|
|
});
|