noble-curves/test/stark/index.test.js
2023-02-20 16:50:29 +01:00

12 lines
286 B
JavaScript

import { describe, should } from 'micro-should';
import './basic.test.js';
import './stark.test.js';
import './property.test.js';
import './poseidon.test.js';
// ESM is broken.
import url from 'url';
if (import.meta.url === url.pathToFileURL(process.argv[1]).href) {
should.run();
}