noble-curves/test/stark/index.test.js

12 lines
286 B
JavaScript
Raw Normal View History

2023-02-20 18:50:29 +03:00
import { describe, should } from 'micro-should';
2022-12-03 13:08:49 +03:00
import './basic.test.js';
import './stark.test.js';
2022-12-03 13:08:49 +03:00
import './property.test.js';
2023-01-25 02:30:53 +03:00
import './poseidon.test.js';
2023-02-20 18:50:29 +03:00
// ESM is broken.
import url from 'url';
if (import.meta.url === url.pathToFileURL(process.argv[1]).href) {
should.run();
}