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.
2020-11-30 18:01:13 +00:00
|
|
|
import {runSecretKeyTests} from "./secretKey.test";
|
2020-11-20 19:03:17 +00:00
|
|
|
import {runPublicKeyTests} from "./publicKey.test";
|
|
|
|
import {runIndexTests} from "./index.test";
|
2020-11-20 19:35:32 +00:00
|
|
|
import {describeForAllImplementations} from "../switch";
|
2020-11-20 19:03:17 +00:00
|
|
|
|
2020-11-20 19:08:53 +00:00
|
|
|
// Import test's bls lib lazily to prevent breaking test with Karma
|
2020-11-20 19:35:32 +00:00
|
|
|
describeForAllImplementations((bls) => {
|
2020-11-30 18:01:13 +00:00
|
|
|
runSecretKeyTests(bls);
|
2020-11-20 19:03:17 +00:00
|
|
|
runPublicKeyTests(bls);
|
|
|
|
runIndexTests(bls);
|
|
|
|
});
|