noble-curves/test/index.test.js

16 lines
391 B
JavaScript
Raw Normal View History

2022-12-03 13:08:49 +03:00
import { should } from 'micro-should';
// Should be first to catch obvious things
2022-12-03 13:08:49 +03:00
import './basic.test.js';
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';
import './secp256k1-schnorr.test.js';
import './jubjub.test.js';
2022-12-28 09:32:27 +03:00
import './hash-to-curve.test.js';
2023-03-21 08:51:18 +03:00
import './poseidon.test.js';
import './bls12-381.test.js';
2022-12-03 13:08:49 +03:00
should.run();