UNPKG

@c9up/technical-indicators-napi

Version:

A Rust-based indicator and Charts library compiled to napi.

14 lines (12 loc) 279 B
import { configure, processCLIArgs, run } from '@japa/runner' import { assert } from '@japa/assert' import { expect } from '@japa/expect' processCLIArgs(process.argv.splice(2)) configure({ files: ['tests/js/*.test.mjs'], plugins: [ expect(), assert(), ], }) run()