noble-curves/curve-definitions/test/index.test.js

15 lines
354 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 './stark/stark.test.js';
import './jubjub.test.js';
import './bls12-381.test.js';
import './hashToCurve.test.js';
2022-12-03 13:08:49 +03:00
should.run();