2022-12-03 13:08:49 +03:00
|
|
|
import { should } from 'micro-should';
|
|
|
|
|
2022-12-14 01:23:23 +03:00
|
|
|
// Should be first to catch obvious things
|
2022-12-03 13:08:49 +03:00
|
|
|
import './basic.test.js';
|
2022-12-14 01:23:23 +03:00
|
|
|
import './nist.test.js';
|
2022-12-09 23:02:58 +03:00
|
|
|
import './ed448.test.js';
|
|
|
|
import './ed25519.test.js';
|
2022-12-03 13:08:49 +03:00
|
|
|
import './secp256k1.test.js';
|
2022-12-14 01:23:23 +03:00
|
|
|
import './stark/stark.test.js';
|
|
|
|
import './jubjub.test.js';
|
2023-01-24 06:02:45 +03:00
|
|
|
// import './bls12-381.test.js';
|
2022-12-28 09:32:27 +03:00
|
|
|
import './hash-to-curve.test.js';
|
2022-12-03 13:08:49 +03:00
|
|
|
|
|
|
|
should.run();
|