noble-curves/test/index.test.js

15 lines
356 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';
2023-01-25 02:30:53 +03:00
import './stark/index.test.js';
import './jubjub.test.js';
2023-01-25 02:30:53 +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();