noble-curves/test/index.test.js

18 lines
459 B
JavaScript
Raw Permalink Normal View History

2022-12-03 10:08:49 +00:00
import { should } from 'micro-should';
// Should be first to catch obvious things
2022-12-03 10:08:49 +00:00
import './basic.test.js';
import './nist.test.js';
2022-12-09 20:02:58 +00:00
import './ed448.test.js';
import './ed448-addons.test.js';
2022-12-09 20:02:58 +00:00
import './ed25519.test.js';
import './ed25519-addons.test.js';
2022-12-03 10:08:49 +00:00
import './secp256k1.test.js';
import './secp256k1-schnorr.test.js';
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();