我有一个wasm-bindgen
编译的Rust模块。我的tests/wasm.rs
文件中也有以下测试:
// //! Test suite for the Web and headless browsers.
//
#![cfg(target_arch = "wasm32")]
extern crate wasm_bindgen_test;
use wasm_bindgen_test::*;
// extern crate patissier;
use mycrate::output_method;
// wasm_bindgen_test_configure!(run_in_browser);
#[wasm_bindgen_test]
fn test_output_method() {
let output = output_method("somestring".to_string());
assert!(output.is_valid());
}
当我使用wasm-pack test --node
时,测试运行很好,但我希望看到的是该node.js中的输出。有办法吗?