1 2 3 4 5 6 7 8 9 10
use actions_toolkit_sys::exec; use wasm_bindgen_test::*; #[wasm_bindgen_test] fn exec_callable() { let command = &"command".into(); let args = Default::default(); let options = Default::default(); exec::exec(command, args, options); }