2022-12-03 10:08:49 +00:00
|
|
|
import { should } from 'micro-should';
|
|
|
|
|
2022-12-13 22:23:23 +00:00
|
|
|
// Should be first to catch obvious things
|
2022-12-03 10:08:49 +00:00
|
|
|
import './basic.test.js';
|
2022-12-13 22:23:23 +00:00
|
|
|
import './nist.test.js';
|
2022-12-09 20:02:58 +00:00
|
|
|
import './ed448.test.js';
|
2023-06-26 22:48:48 +02:00
|
|
|
import './ed448-addons.test.js';
|
2022-12-09 20:02:58 +00:00
|
|
|
import './ed25519.test.js';
|
2023-04-20 13:37:21 +02:00
|
|
|
import './ed25519-addons.test.js';
|
2022-12-03 10:08:49 +00:00
|
|
|
import './secp256k1.test.js';
|
2023-02-09 19:26:20 +00:00
|
|
|
import './secp256k1-schnorr.test.js';
|
2022-12-13 22:23:23 +00:00
|
|
|
import './jubjub.test.js';
|
2022-12-28 06:32:27 +00:00
|
|
|
import './hash-to-curve.test.js';
|
2023-03-21 05:51:18 +00:00
|
|
|
import './poseidon.test.js';
|
|
|
|
import './bls12-381.test.js';
|
2022-12-03 10:08:49 +00:00
|
|
|
|
|
|
|
should.run();
|