有没有办法查看wasm-bindgen-test生成的测试?

时间:2019-04-24 15:47:15

标签: node.js testing wasm-bindgen

我有一个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中的输出。有办法吗?

0 个答案:

没有答案