Cargo extension to run tests by nodejs
shell
$ cargo install cargo-testjs
shell
$ cargo testjs
You can write configs in Cargo.toml.
toml:Cargo.toml
[package.metadata.testjs]
node = "nodejs"
target = "asmjs-unknown-emscripten"
prelude = "tests/test.js"
An absolute path to the nodejs. The default value is node
The JS target to be built. The default value is asmjs-unknown-emscripten
A JS file to load before the test file.